api docs: Document rate limiting rules.

Unfortunately, the example doesn't work due to some sort of bug with
the fixture generation system, which I've reported as #19072.
This commit is contained in:
Tim Abbott 2021-06-30 13:03:22 -07:00
parent 0740c94517
commit 0997eeae9e
2 changed files with 53 additions and 3 deletions

View File

@ -30,10 +30,42 @@ is not supplied:
{generate_code_example|/rest-error-handling:post|fixture(400_1)}
## Rate limit exceeded
A typical failed JSON response for when a rate limit is exceeded:
{generate_code_example|/rest-error-handling:post|fixture(429_0)}
The `retry-after` paremeter in the response indicates how many seconds
the client must wait before making additional requests.
To help clients avoid exceeding rate limits, Zulip sets the following
HTTP headers in all API responses:
* `X-RateLimit-Remaining`: The number of additional requests of this
type that the client can send before exceeding its limit.
* `X-RateLimit-Limit`: The limit that would be applicable to a client
that had not made any recent requests of this type. This is useful
for designing a client's burst behavior so as to avoid ever reaching
a rate limit.
* `X-RateLimit-Reset`: The time at which the client will no longer
have any rate limits applied to it (and thus could do a burst of
`X-RateLimit-Limit` requests).
Zulip's rate limiting rules are configurable, and can vary by server
and over time. The default configuration currently limits:
* Every user is limited to 200 total API requests per minute.
* Separate, much lower limits for authentication/login attempts.
When the Zulip server has configured multiple rate limits that apply
to a given request, the values returned will be for the strictest
limit.
## User not authorized for query
A typical failed JSON response for when the user is not authorized
for a query:
A typical failed JSON response for when the user is not authorized for
a query:
{generate_code_example|/rest-error-handling:post|fixture(400_2)}

View File

@ -11134,13 +11134,21 @@ paths:
- $ref: "#/components/schemas/UserNotAuthorizedError"
"403":
description: |
Forbidden
Forbidden.
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/UserDeactivatedError"
- $ref: "#/components/schemas/RealmDeactivatedError"
"429":
description: |
Rate limit exceeded.
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/RateLimitedError"
/zulip-outgoing-webhook:
post:
operationId: zulip_outgoing_webhooks
@ -12809,6 +12817,16 @@ components:
"msg": "Account is deactivated",
"result": "error",
}
RateLimitedError:
allOf:
- $ref: "#/components/schemas/CodedError"
- example:
{
"code": "RATE_LIMIT_HIT",
"msg": "API usage exceeded rate limit",
"result": "error",
"retry-after": 28.706807374954224,
}
RealmDeactivatedError:
allOf:
- $ref: "#/components/schemas/CodedError"