Checkio API
post/v1/my/totp/disable

Disable TOTP

Requires Authentication
My

Disables TOTP for the current user after verifying their password. Cannot disable if TOTP is required by an administrator.

Request Body

required
password
string
required
- Current account password for verification

Responses

TOTP disabled successfully

Code Examples

curl -X POST 'https://api-next.checkio.co.uk/v1/my/totp/disable' \
  -H 'Authorization: Bearer {token}' \
  -H 'Content-Type: application/json' \
  -d '{
  "password": "string"
}'