webhooks did not receive event after established seccessfully

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"
                ]
            }
        ]
    }
}

Hi @Thomas_white,

What’s that resource_subtype underneath "resource_type": "project"? That’s not correct but maybe that’s just something that ended up there when you copied into your forum post? Lets get that squared away before going any further…

1 Like

Thank you @Phil_Seeman . I removed the resource_subbtype prototype from my request api, then i got the event callback. Actually I don’t need this parameter.

1 Like