Skip to main content
POST
/
api
/
v1
/
auth
/
2fa
/
verify
Step-up verify 2FA
curl --request POST \
  --url https://api.flowxi.app/api/v1/auth/2fa/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "123456"
}
'
{
  "code": "TWOFA_VERIFIED",
  "message": "2FA verified.",
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
code
string
required
Example:

"123456"

Response

Verified.

code
string
required
Example:

"OK"

message
string
required
Example:

"OK"

success
boolean
required
Example:

true