• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

HTTP 429 (too many requests) Fix

adamkse

Member
Hi, I have a workflow that trigger when an invoice has been updated. Then we do a few steps then email teh invoice. There is a 60 requests per minute limit on the API for the sending email step but occasionally we go over this.

I have added a delay before the send step but it doesn't work because each iteration is a separate workflow. Is there a better way to do it? is there a way to have a delay between on a step being ran between workflows?
 

ArshilAhmad

Moderator
Staff member
Hi @adamkse,

There is no specific tool that allows you to set a delay between the execution of two tasks.

As a workaround, you can add a Counter and Delay step to your workflow. The counter will increase the delay time by 1 minute each time your workflow is executed. So, the first execution will occur after 1 minute, the next after 2 minutes, and so on, until 60 minutes.

This approach effectively creates a delay between two tasks, but please note that it will also cause the action steps to execute with a significant delay due to the nature of this setup.

https://connect.pabbly.com/workflow...ODGkPG1ZSCV8JegEYUm5WVQZ8VRhSKVQZXG8KVAUtVjc#

Currently, the counter is set assuming that your workflow triggers 60 times at once. You can adjust the Reset Counter time as per your convenience.
1742414206945.png
 

Preeti Paryani

Well-known member
Staff member
Hello @adamkse,

You can use code(Pabbly) to add the delay for seconds.

Here is the code, it will add a 20-second delay:

await new Promise(resolve => setTimeout(resolve, 20000));
output = [{wait: "20000ms"}];
 
Top