I would like to filter a specific custom fields when creating a webhook.
I used this example:
{
“data”: {
“filters”: [
{
“fields”: [
“custom_fields”
],
“resource_type”: “task”,
“action”: “changed”
}
],
“target”: “myendpoint”,
“resource”: “XX”
}
}
but its get all events that happened when a custom fields is changed in task filtered.
When I used this example, trying to filter the custom field “Estimated time”, didn’t work.
{
“data”: {
“filters”: [
{
“fields”: [
“estimated_time”
],
“resource_type”: “task”,
“action”: “changed”
}
],
“target”: “myendpoint”,
“resource”: “XX”
}
}
Is there any way to filter some specific custom field?
Thanks.