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:
- Add 'urgent' tag to Targetprocess.
- 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}
]
}
}
Updated over 4 years ago