curl --request POST \
--url https://{tenantDomain}/api/v2/refresh-tokens/revoke \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"user_id": "<string>",
"client_id": "<string>",
"audience": "<string>"
}
'Revoke refresh tokens in bulk by ID list, user, user+client, or client.
curl --request POST \
--url https://{tenantDomain}/api/v2/refresh-tokens/revoke \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"user_id": "<string>",
"client_id": "<string>",
"audience": "<string>"
}
'Documentation Index
Fetch the complete documentation index at: https://auth0-feat-custom-rate-limit-policies.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Exactly one of the following combinations must be provided: ids (up to 100 token IDs); user_id; user_id + client_id; user_id + client_id + audience; or client_id alone. ids cannot be combined with user_id, client_id, or audience. audience requires both user_id and client_id.
Array of refresh token IDs to revoke. Limited to 100 at a time.
11 - 30Revoke all refresh tokens for this user.
1 - 300Revoke all refresh tokens for this client.
1 - 64Resource server identifier (audience) to scope the revocation. Must be used with both user_id and client_id.
1 - 600Refresh token revocation request accepted.
このページは役に立ちましたか?