I'm trying to use Power Automate to capture a webhook that is being generated by an outside/closed system.
In Power automate I just have simple trigger that is: "When a HTTP request is received" followed by a parser and 200 response.
I can simulate receiving the data using Postman with no issues when using no additional authentication in the header.
When the actual system generates the webhook call, it includes a Bearer token in the header.
As a result I get the following error: error 401
{
"error": {
"code": "DirectApiRequestHasMoreThanOneAuthorization",
"message": "The request has both SAS authentication scheme and 'Bearer' authorization scheme. Only one scheme should be used."
}
}
Unfortunately, I can't modify anything in the system that generates the webhook.
I can only subscribe to it as is.
Is there a way to set the Flow HTTP API trigger to ignore the Bearer token and not fail since it now has both (Bearer token and SAS auth)?
Thank you
Oren