Whats the answer
The 'ListCallbackUrl' API is not supported by triggers of type 'ApiConnection' in Blob triggered Standard Logic App Workflow
We have bunch of workflows which connect to different containers in a storage account and get triggered by a new file added in any of them. These workflows used to work fine before we implemented VNet-Integration and connected the concerned storage account with a private endpoint to the same VNet. The connectivity between the workflows and storage account is established but for some reason we are getting these errors on the trigger in all the workflows now-
The error in the trigger history is this -
{
"type": "MsPortalFx.Errors.AjaxError",
"baseTypes": [
"MsPortalFx.Errors.AjaxError",
"MsPortalFx.Errors.Error"
],
"data": {
"uri": "https://{logicapp}:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/362a2951a9694dcc75/triggers/When_zip_file_is_added_to_folder/histories/08585495128095312978084697998CU00/contents/TriggerOutputs?api-version=2018-11-01&code=wDELMhpCM4yYyorRfqEW61Av6jXGC4SEIpVgQduwmA%3d%3d&se=2022-05-09T15%3A00%3A00.0000000Z&sp=%2Ftriggers%2FWhen_zip_file_is_added_to_folder%2Fhistories%2F08585495128095312978084697998CU00%2Fcontents%2FTriggerOutputs%2Fread&sv=1.0&sig=_REDACTED_SAS_TOKEN_SIG_",
"type": "GET",
"pathAndQuery": "",
"requestId": "8254051c-82a0-4d4d-8025-d8f1ee3b5071",
"failureCause": "",
"sessionId": "108787757af34c768f05d45f3ef04231",
"status": 0,
"statusText": "error",
"duration": 1203.6000000238419
},
"extension": "Microsoft_Azure_EMA",
"errorLevel": 0,
"timestamp": 7911924.399999976,
"name": "AjaxError",
"innerErrors": [],
"textStatus": "error",
"errorThrown": "",
"jqXHR": {
"readyState": 0,
"status": 0,
"statusText": "error"
}
}{
"type": "MsPortalFx.Errors.AjaxError",
"baseTypes": [
"MsPortalFx.Errors.AjaxError",
"MsPortalFx.Errors.Error"
],
"data": {
"uri": "https://{logicapp}.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/362a2951a96947aebbeed82/triggers/When_zip_file_is_added_to_folder/histories/08585495128095312978084697998CU00/contents/TriggerOutputs?api-version=2018-11-01&code=wDELMhpCRfqEW61Av6jXGC4SEIpVgQduwmA%3d%3d&se=2022-05-09T15%3A00%3A00.0000000Z&sp=%2Ftriggers%2FWhen_zip_file_is_added_to_folder%2Fhistories%2F08585495128095312978084697998CU00%2Fcontents%2FTriggerOutputs%2Fread&sv=1.0&sig=_REDACTED_SAS_TOKEN_SIG_",
"type": "GET",
"pathAndQuery": "",
"requestId": "8254051c-82a0-4d4d-8025-d8f1ee3b5071",
"failureCause": "",
"sessionId": "108787757af34c768f05d45f3ef04231",
"status": 0,
"statusText": "error",
"duration": 1203.6000000238419
},
"extension": "Microsoft_Azure_EMA",
"errorLevel": 0,
"timestamp": 7911924.399999976,
"name": "AjaxError",
"innerErrors": [],
"textStatus": "error",
"errorThrown": "",
"jqXHR": {
"readyState": 0,
"status": 0,
"statusText": "error"
}
}
And the network trace gives this 400 error-
code: "ApiNotSupported"
message: "The 'ListCallbackUrl' API is not supported by triggers of type 'ApiConnection'."
Does anybody know what could be the reason for this error and how to resolve it? Thanks in advance.