I have a Send Http Request to external API, but most of them time the action failed with this error:-
{
"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."
}
}
and it keeps trying to get the data for 12 tries without any success call, and each try will take 2 minutes;-
Now i have the default setting for this action which uses Asynchronous call, as follow:-
So how i can increase the duration of the call to be more than 2 minutes? although using PostMan i can get the data in less than 30 seconds!!
Any advice? I also uncheck the "Asynchronous Pattern" checkbox, but nothing differ,, so not sure what this checkbox is suppose to do..