Hello,
I am trying to get some input from the user in a custom trigger using dynamic mapping.
In order to do that I have created a recipe consisting in:
Custom trigger:
Custom action:
This gives me the following recipe:
Once I click in external entity, then I get the necessary options from the field Definitions URL I defined in custom type field.
But once I have finished setting the mapping and attempt to add to board, I get an error and I am unable to complete the integration:
For reference, I have another analogue recipe with the only difference that instead of dynamic mapping is using a Custom field (type list)
In here, if I click in add board everything works fine and I get this request to my endpoint with the information about the selected option:
{
"payload": {
"webhookUrl": "https://automations-euc1.monday.com/apps-events/5732918",
"subscriptionId": 5732918,
"blockMetadata": {
"shouldCalculateDynamicMapping": false
},
"inboundFieldValues": {
"testList": {
"title": "foo",
"value": "bar",
"invalid": false
},
"boardId": 1196005718
},
"inputFields": {
"testList": {
"title": "foo",
"value": "bar",
"invalid": false
},
"boardId": 1196005718
},
"recipeId": 30127110,
"integrationId": 65625654
}
}
Why can’t I achieve the same with the item mapping?