Hey,
I’m trying to create a new Recipe:
Custom Trigger → Create an item (The one without the field mapping).
For the example let’s say I want to create the item with a name and a populated column “description”.
The subscription works fine and I got the webhook address.
My problem is with the “data” I’m trying to post… (I’m getting 200OK back so it’s not authorization issue).
So - for “item name” and “description” column - how should my data in the POST look like?
I’ve tried:
{
“trigger”: {
“outputFields”: {
“boardId”: 12345,
“itemColumnValues”: {“item_name”: “title”, “description”: “desc”}
}
}
}
Thanks! 🙂