Hello, everyone. I have a problem while using webhooks api.
I created a webhooks successfully through the api https://app.asana.com/api/1.0/webhooks
.
and it response status 200. and i have received a event request with a empty array(with An X-Hook-Signature
header). but after that . i did not received any request or event(I try to modify my project name、due date、 task name 、due date,assignee), it still not work. could you help me ?
below it my webhook:
{
"data": {
"gid": "120********32",
"resource_type": "webhook",
"resource": {
"gid": "1200******369",
"name": "project-te",
"resource_type": "project"
"resource_subtype": "milestone"
},
"target": "https://*******",
"active": true,
"created_at": "2021-06-03T07:49:41.628Z",
"last_failure_at": null,
"last_failure_content": "",
"last_success_at": "2021-06-03T07:49:43.090Z",
"filters": [
{
"resource_type": "task",
"resource_subtype": "milestone",
"action": "changed",
"fields": [
"name",
"assignee",
"notes",
"due_at",
"due_on"
]
}
]
}
}