Originally asked by Florian on 03 December 2021 (original question)
Hello all,
I am trying to fill a dropdown field in Zendesk. But I get the message when I try the following
"nodeHelper.getOption is not supported on zendesk, just assign the string value directly " How can I implement this in Zendesk?
Current script:
def MandantMap = ["Global": "Group Global", "Europa": "Group Europe", "DE / AT":"Group DE / AT"]
def remoteMandant = replica.customFields."mandant"?.value?.value
def mandantOption = nodeHelper.getOption(issue, "360029941496", MandantMap[remoteMandant])
issue.customFields."360029941496".value = mandantOption