Skip to main content
POST
/
v1
/
mfa
/
recovery
/
verify
Verify Recovery Code
curl --request POST \
  --url https://api.example.com/v1/mfa/recovery/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

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
Required string length: 6 - 12

Response

Successful Response