DELETE
/
api
/
svc
/
v1
/
personal-access-tokens
/
revoke
/
all
Revoke All Personal Access Tokens
curl --request DELETE \
  --url https://{controlPlaneURL}/api/svc/v1/personal-access-tokens/revoke/all \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>"
}'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
email
string
required

Email of the user to revoke all Personal Access Tokens for

Response

All Personal Access Tokens revoked successfully

The response is of type object.