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>"
}
'{}Revoke All Personal Access Tokens for the user with the given email
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>"
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Email of the user to revoke all Personal Access Tokens for
All Personal Access Tokens revoked successfully
The response is of type RevokeAllPersonalAccessTokenResponse · object.
Was this page helpful?