Skip to main content
DELETE
/
accounts
/
totp
Remove TOTP
curl --request DELETE \
  --url https://api.quiva.ai/accounts/totp \
  --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>

User email (optional, defaults to current user)

Response

TOTP removed successfully

message
string