Skip to main content

Revoke All Refresh Tokens​

Revokes all refresh tokens of the authenticated user.

Request Body required

    object

Responses

A successful response.


Schema

    object

POST /users/me/tokens/refresh/_revoke_all

Authorization

name: OAuth2type: oauth2scopes: openidflows: {
  "authorizationCode": {
    "authorizationUrl": "$CUSTOM-DOMAIN/oauth/v2/authorize",
    "tokenUrl": "$CUSTOM-DOMAIN/oauth/v2/token",
    "scopes": {
      "openid": "openid"
    }
  }
}

Request

Base URL
https://$CUSTOM-DOMAIN/auth/v1
Bearer Token
Content-Type
Body required
{}
Accept
curl / cURL
curl -L -X POST 'https://$CUSTOM-DOMAIN/auth/v1/users/me/tokens/refresh/_revoke_all' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{}'