I have a ticket in Zendesk that is being synced to Jira.
When this happens, I want the tag “jira_escalated” to be added to the source Zendesk ticket.
I’ve added this in the outgoing script:
issue.labels += nodeHelper.getLabel("jira_escalated") // Add the 'jira_escalated' tag
replica.labels = issue.labels
And I see both replicas have the added label, checking on Zendesk Endpoint:
- both on local replica and remote replica:
"labels": [
{
"label": "......"
},
{
"label": "jira_escalated"
}
],
The added “jira_escalated” tag appears on the Jira side issue, but is not visible in Zendesk’s ticket tags, even though “Entity Sync status” functionality shows the label is there.
I don’t know what to fix.
Alternatively, I can accept to modify the status of the Zendesk’s ticket upon syncing, setting it to a custom status “Escalated” for instance.
That’s what I’m going to do with a Zendesk trigger set on the added jira_escalated
tag.