Checkio API
post/v1/my/totp/confirm

Confirm TOTP setup

Requires Authentication
My

Validates a TOTP code against the stored secret and enables TOTP for the current user. Must be called after setup.

Request Body

required
code
string
required
- 6-digit TOTP code from the authenticator app

Responses

TOTP enabled successfully

Code Examples

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