I have a Send Http request to external system premium action, which get the calls done by our call center in the current Date (such as on 14 November or on 15 November, etc..), but sometimes on specific days where we have many calls, the action failed due to timeout :-
{
"error": {
"code": "BadRequest",
"message": "Http request failed: the server did not respond within the timeout limit. Please see logic app limits at https://aka.ms/logic-apps-limits-and-config#http-limits."
}
}
For example yesterday the flow completely failed to get the data after 12 retries:-
While 2 days ago, it was able to get the data from the external API after 4 retries:-
one the weekends it gets the data directly without any retries...
So my question is how i can increase the time the action will be waiting for the response from the external API? now when i use some API tools to pull the XML from the API such as postman, i can see that the API takes couple of minutes to response, espically when there are lot of data for that day, but it will return the result... so how i can improve the wait time for the HTTP action???, here is the settings for the action:-