I created a webhook to watch for changes on a task for the following fields:
- due_on
- completed
- tags
due_on
and completed
triggers the webhook just fine while changes to tags
do not.
I use the following payload when creating the webhook:
...
"filters": [
{
"action": "changed",
"fields": ["due_on", "completed", "tags"],
"resource_type": "task"
}
],
"resource": "xxx",
"target": "https://xxxx"
...