How can we prevent receiving 429 status responses caused by API rate limits?

How can we prevent receiving 429 status responses caused by API rate limits?

Our API rate limits are as below:

Default: limitPerSecond=“3” limitPerMinute=“20” limitPerHour=“180” limitPerDay=“1600”

You could restrict the amount of requests you send based on the limits.

As mentioned

and synchronize on


taken from: Orchestrator - Rate limits and large data field usage optimization

@Yathuraj,

Where are you getting this status response?
If it’s in your code and while using any activities like HTTP request, try putting it inside the Retry Scope. Add delay of a second to cool off the limit and the send the API request.