Hello,
I am trying to use the create_item webhook in my code. I have set up webhook validation and am successfully receiving the webhook payload. However, the problem arises as soon as I click on New Item to create an item on the board; the webhook gets triggered, but it provides empty columnValues .
This is webhook payload I’m recieving.
{
"event": {
"app": "monday",
"type": "create_pulse",
"triggerTime": "2024-01-07T05:37:32.618Z",
"subscriptionId": 3189290,
"userId": 53812717,
"originalTriggerUuid": null,
"boardId": 18356535,
"pulseId": 1836594,
"pulseName": "hello",
"groupId": "topics",
"groupName": "Group Title",
"groupColor": "#579bfc",
"isTopGroup": true,
"columnValues": {},
"triggerUuid": "ksjjshosajsosasnas" //
}
}
Is there any way after I fill every column value then only create_item event will trigger?
I want column values of newly created item.
Thanks.