You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rate limiting is is considered per API token. API allows to perform 100 requests per 10 seconds.
Every API response includes the following headers:
X-RateLimit-Limit: the amount of requests current API token can perform for the 10 seconds window.
X-RateLimit-Remaining: the amount of requests left for the 10 seconds window.
X-RateLimit-Reset: the amount of seconds before the limit resets.
In case the limit is exceeded for the time window, the Pipedrive API will return an error response with HTTP code 429 and Retry-After header that will incicate the amount of seconds before the limit resets.
The text was updated successfully, but these errors were encountered:
Rate limiting
Rate limiting is is considered per API token. API allows to perform 100 requests per 10 seconds.
Every API response includes the following headers:
X-RateLimit-Limit: the amount of requests current API token can perform for the 10 seconds window.
X-RateLimit-Remaining: the amount of requests left for the 10 seconds window.
X-RateLimit-Reset: the amount of seconds before the limit resets.
In case the limit is exceeded for the time window, the Pipedrive API will return an error response with HTTP code 429 and Retry-After header that will incicate the amount of seconds before the limit resets.
The text was updated successfully, but these errors were encountered: