We are currently implementing a custom connector
to retrieve data from a legacy system.
Since these queries take a long time we use the ApiConnectionWebhook
pattern for actions.
like described here: https://docs.microsoft.com/de-de/connectors/custom-connectors/create-webhook-trigger
The "happy path" works great. But now we are facing the challenge to handle technical and logical errors in these queries.
The Logic Apps Engine generates the callback url when registering an action webhook via @{listCallbackUrl()}
.
Is there any way to report an error status to the engine during the callback (call of the url)?