Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
fiquick committed Dec 18, 2024
1 parent 46fec20 commit 9f8e858
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/ROOT/pages/platform/api/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ The following example shows how to use the base URL and versioning to make a req
In the event of `5xx` server error responses, you may consider retrying the request after a delay if it is safe to do so.
The response may include a `Retry-After` header with a suggestion of a suitable minimum delay before attempting to retry.

Rate limiting for the `/oauth/token` endpoint will soon be adjusted from 125 requests per hour to 15 requests per hour.
The rate limit for the `/oauth/token` endpoint will be adjusted from 125 requests per hour to 15 requests per hour soon.
The rate limit for all other requests is set to 125 requests per minute.

You should consider your use of the Rate Limit before attempting to retry, and we recommend using an exponential backoff delay with a limited number of retries before giving up.
You should consider your use of the rate limit before attempting to retry, and we recommend using an exponential backoff delay with a limited number of retries before giving up.

A request is only guaranteed to be safe to retry if it uses an idempotent HTTP method, such as `GET`.
If, for example, you retry a request for creating an instance, you may end up with duplicate instances and end up being charged extra as a result.
Expand Down

0 comments on commit 9f8e858

Please sign in to comment.