I need to integrate between monday and WorkflowMax. After reading through documentation I have the proposed solution (please shout if this looks silly).
- Have created a Monday App with an integration feature
- The integration feature contains a recipe which calls a third party endpoint via a custom action
- The endpoint provided by Azure serverless functions handles the transformation of data passed to create a project within WorkflowMax
The custom action documentation states http status 200 must be returned otherwise the action will continue to post every minute for 30 minutes. I’ve tested this by returning 500 and it does what it says on the can.
However, when the 30 minutes expires if the call hasn’t succeeded, the user, action etc. has no information regarding the failure of this call. It seems it is send and forget.
Is there a way I can grab the fact the call has failed, or should I be doing these integrations in a differing manner?