Hi I’m having an issue while trying to create a webhook using your GraphQL endpoint. I don’t have problems creating the webhook using for example the change_column_value
event as you can see, here I can get the webhook id in the response
curl --location --request POST 'https://api.monday.com/v2' \\
--header 'Authorization: MY_API_KEY' \\
--header 'Content-Type: application/json' \\
--data-raw '{"query":"mutation { create_webhook (board_id: 3985754441, url: \\"https://<SUBDOMAIN>.pipedream.net\\", event: change_column_value) { id board_id } }"}'
{"data":{"create_webhook":{"id":"164820786","board_id":3985754441}},"account_id":11028737}
But when I try creating it with change_subitem_column_value
event I get no webhook id at all.
curl --location --request POST 'https://api.monday.com/v2' \\
--header 'Authorization: MY_API_KEY' \\
--header 'Content-Type: application/json' \\
--data-raw '{"query":"mutation { create_webhook (board_id: 3985754441, url: \\"https://<SUBDOMAIN>.pipedream.net\\", event: change_subitem_column_value) { id board_id } }"}'
{"data":{"create_webhook": null},"account_id":11028737}
I hope you can give me a hand on this, thanks in advance!
– Jorge