Webhooks do not seem to be working
I have a web hook subscription successfully created with the API and can see that the subscription is available and active
{"subscription_id":"c2b95202-c0b1-455b-92cb-9cfabb621e70","subscription_name":"hook2mq","description":"Fieldwire webhook to RabbitMQ bridge (hook2mq)","post_url":"https://fieldwire.withoutfolding.tech/webhook","subscription_status":"enabled","account_id":61800,"internal":false,"entity_filters":[],"project_filters":[]}}
I have a web hook running and can see if I use curl
curl -X POST -H "Content-Type: application/json" -d @data.json http://fieldwire.withoutfolding.tech/webhook
I can hit the end point okay so can verify the webhook works. I can also confirm this in the HTTP logs in cloudflare for the same domain.
I create some simple changes to tasks in the fieldwire UI. I would expect that these changes would cause DB changes and trigger a call to the webhook with
"event": {
"entity_type": "task",
"action": "updated",
"attributes": null
},
The webhook is never called, I can see this in both the webhook logging and cloudflare logging.