@WZIAFP Thanks for reaching out. Looks like you have created the logic app under the Consumption SKU which has the limit of 120 sec as documented here.
For longer running operations, use an asynchronous polling pattern or an "Until" loop. To work around timeout limits when you call another workflow that has a callable endpoint, you can use the built-in Azure Logic Apps action instead, which you can find in the designer's operation picker under Built-in.
You will have two logic app one which will be http webhook calling your main HTTP request and the existing one which call your webhook with the until condition. Please refer to this for more details.
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.