Get Webhook Notification when a task is deleted.

Hi Team,

We have a webhook in which we receive notification when a task is created or anything is updated. However, now we need webhook notification even if a task is deleted. With our current setup we are not able to get webhook notification in case of task deletion.

I tried making following changes in webhook filter but still no luck.

Passing another action filter in the list

data: {
filters: [
{
action: “changed”,
resource_type: “task”,
},
{
action: “deleted”,
resource_type: “project”,
},
]

Passing list of actions inside filter

data: {
filters: [
{
action: [“changed”, “deleted”],
resource_type: “task”,
},
],
resource: project.gid,
target: project.url,
}

Please suggest how I can achieve desired result.

Related post The webhook for deleting a task does not work

Hi Bastien,

Thanks for the quick response. However, I am not able to see any resolution in the post which you have suggested.

Regards,
Amit Sharma