I created a webhook to get triggered every time there is a section change on a board, but whenever I move any task to different sections, the webhook response returns the same information no matter what task was actually moved.
Here are the parameters used to create the webhook:
data = {
"data": {
"resource":PROJECT_ID,
"target": api_url,
"filters": [{
"resource_type" : "story",
"resource_subtype": "section_changed"
}]
}
}
How can I get the webhook to give updated responses ?