Originally asked by Roman on 27 May 2020 (original question)
error: Priority is invalid. How do you fix this type of error on ZenDesk?
Originally asked by Roman on 27 May 2020 (original question)
error: Priority is invalid. How do you fix this type of error on ZenDesk?
Answer by Roman on 27 May 2020
a very common mistake is when the priority name in the script is written with a capital letter
issue.priority = nodeHelper.getPriority("High")
Priority name on ZenDesk should all be lower case:
issue.priority = nodeHelper.getPriority("high")
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.