Skip to main content
POST
/
oauth2
/
revoke
Revoke a token
curl --request POST \
  --url https://api.provident.ae/v2/oauth2/revoke \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
token
string
required

The token to revoke

Response

200

Token revoked successfully