I am trying to set up a workflow where a tag comprised of the assignee's ID and rating is added to a ticket if the satisfaction rating changes. To create these custom tags I need to create a webhook with endpoint of api/v2/tickets/update_many.json so I can use "additional_tags" versus just "tags" which replaces all current tags with the new one. I just want to ADD tags, not SET tags.
When using a specific ticket in the endpoint it works perfectly, but it needs to be able to run for any ticket that matches the criteria.
So for example, the following endpoint is working:
https://xyz.zendesk.com/api/v2/tickets/update_many.json?ids=3182170
But what I need to work is something like: https://xyz.zendesk.com/api/v2/tickets/update_many.json?ids={{ticket.id}}
Does anyone know? I appreciate any clues!