Revoke Refresh Token
Note
This endpoint only revokes the refresh token. The access token cannot be revoked while it is still valid. To complete the logout process, please ensure that any locally or client-side stored access tokens are removed
POST /oauth/revoke
Basic Authorization (retrieve credentials from OAuth Application)
- Username: OAuth Client ID
- Password: OAuth Client Secret
- HTTP header:
Authorization: Basic base64(client_id:client_secret)
Headers
Content-Type: application/json
Request Body
| Key | Type | Required | Rule | Description |
|---|---|---|---|---|
| refresh_token | string | Mandatory | refresh token issued in previous token request |
Expected HTTP status code
- 200 OK