Rate limiting

Unless otherwise specified, most Integration Platform APIs impose rate limits on the number of API calls that can be issued over a period of time.

While we do not publish exact rate limit rules, these limits are not designed to inhibit normal application behaviours. Your application should handle 429 errors.

When the rate limit is exceeded these endpoints will return an HTTP 429 Too Many Requests response with the following response body indicating when requests will be allowed again:

Copy
Copied
{
  "type": "https://tools.ietf.org/html/rfc6585#section-4",
  "title": "Too Many Requests",
  "status": 429
}

and the Retry-After response header indicates how many seconds you should wait before retrying.

Copy
Copied
retry-after: 60