Hey folks
I am trying to build an integration.
I have the Monday → to my app working well.
Now I want to do my app → to Monday.
So I created a new recipe with a custom trigger.
And as an action I have change column value
and connected to the trigger provides the value.
I am then calling the trigger in my app with the following code
let mondayWebhookCall = {
method: 'POST',
url: 'https://api-gw.monday.com/automations/apps-events/28711827',
headers:{
'Authorization': `${process.env.SIGNING_SECRET}`,
'Content-Type': 'application/json'
},
data:{
trigger: {
outputFields: {
status : status,
itemId : 882599396
}
}
}
}
let call = await axios(mondayWebhookCall)
I receive a nice { success: true }
message, but I see no change in the board 😦
Any idea what I am doing wrong?
Thanks