Hello team,
I’m using a tag in zendesk for “unexalate” when the tag “unexalate” is written. The Jira incoming looks like this:
def tag names = replica.labels.collect { it.value}
If (tagNames.contains(“unexalate”)) {
replica.labels.removeAll { it.value == “unexalate” } //function to remove the tag in zendesk not working
syncHelper.unExalateAfterProcessing()//works perfect unexalating
}
Not only I want to unexalate the zendesk to Jira but also I need to remove the tag from the zendesk ticket and my function is not working now. What can I be missing?