Skip to main content
DELETE
/
accounts
/
tokens
Revoke all tokens
curl --request DELETE \
  --url https://api.quiva.ai/accounts/tokens \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "message": "<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<email>
required

User email

Response

Tokens revoked successfully

message
string