Is your triggerâs Subscribe URL getting a request and returning a 200 status?
In custom triggers, when you click âAdd to Boardâ, monday will send a POST request to your Subscribe URL endpoint. If it receives a malformed response or a status code other than 200, the user will see an error message in the UI.
Basically if monday canât successfully subscribe to the trigger, it will not allow the user to add the recipe.
For what I see we are not even getting the request in our subscription URL endpoint.
We do get it when I am trying the recipe that doesnât have a Custom field (dynamic mapping) but a Custom field (type list) instead.
From what I can see in the browser, there is a 500 in this request, that I assume prevents you from sending the request to the subscription URL:
PUT https://onoff-telecom.monday.com/automations-ms/automations/65635340
There must be something that is missing from our entity or some wrong formatting of the mapping or something, but I really canât put my finger on it.
In the browser youâll see a 500 error if thereâs any issue with subscribing to the endpoint. The request to your side isnât directly coming from the browser â itâs made from a monday server, and the result is passed to your browser.
You said that the request isnât even hitting your endpoint. In that case, I recommend checking the following things:
Is the correct subscribe URL listed in your blockâs config?
Are you adding the correct version of your app to the board?
The second question is important â often times people will add âMy integration - v1.0.0â but be making changes to âMy integration â v1.1.0â.
You can learn more about how we handle versioning here: Versioning
Is the correct subscribe URL listed in your blockâs config?
Yes
Are you adding the correct version of your app to the board?
Yes
I am trying an entirely different approach now, so I may be able to do what I want in a different way. But still I am unable to get in my system information about the selected option by the user for an Item Mapping.
@DevIntegrations I am trying to get the same information on my side, did you have any luck on the âother approachâ and if so, can you share your approach?
@dipro I am having the exact same issue as @DevIntegrations described.
It seems having a dynamic mapping as a triggers input field does not allow me to create the automation. Is this supposed to work?