Revoke a refresh token to prevent it from being used to obtain new access tokens. Once revoked, the refresh token can no longer be used.
Use cases:
Note: This endpoint only revokes refresh tokens. Access tokens cannot be revoked and will remain valid until they expire.
The access token received from the authorization server in the OAuth 2.0 flow.
Your application's Client ID
The refresh token you want to revoke
Your application's Client Secret (required for confidential clients)
A JWT signed with your client secret or private key (for Private Key JWT authentication)
Must be 'urn:ietf:params:oauth:client-assertion-type:jwt-bearer' when using client_assertion
urn:ietf:params:oauth:client-assertion-type:jwt-bearer Token revoked successfully (or token was already invalid/revoked)
The response is of type string.