Hi!
I need some assitance to make work a webhook with two different filters.
- Comments added in a specific task --> IITS WORKING
- Due date change in specific task (The same taks as before) --> NOT WORKING
I receive added storys via webhooks, but not the event of that the due date change, how can achieve this?
{
“data”: {
“resource”: “1191784326921361” ------> TASK ID,
“filters”: [
{
“resource_type”: “story”,
“resource_subtype”: “comment_added”,
“action”: “added”
},
{
“resource_type”: “task”,
“resource_subtype”: “due_on”,
“action”: “changed”,
“fields”:[
“due_on”
]
}
],
“target”: TARGET
}
}
Thanks a lot for the help!