Append Tags

Append Tag

šŸ‘

Please consider using the following Automation Rule instead of this webhook.

The webhook appends 'urgent' tag to Requests with 'Urgent' keyword in the title.

Prerequisites:

  1. Add 'urgent' tag to Targetprocess.
  2. Get numeric ID of existing tag:
GET /api/v1/Tags?where=Name eq 'urgent'

Say the ID is 42.

Add Tag with existing ID:

https://your-targetprocess-address/api/v1/Assignables?token=[your token]
Create Request
Name.Contains("Urgent")
{
  "Id": {{ID}},
  "TagObjects": {
       "Items":[
       		{"Id": 42}
       ]
   }
}