post
/v1/my/totp/confirmConfirm 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
codestring
required
- 6-digit TOTP code from the authenticator appResponses
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"
}'