Skip to main content
POST
/
two-fa
/
verification
/
{session_uuid}
/
check
Validate a code
curl --request POST \
  --url https://api.wavix.com/v1/two-fa/verification/{session_uuid}/check \
  --header 'Content-Type: application/json' \
  --data '{
  "code": "123456"
}'
{
  "is_valid": true
}

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

session_uuid
string
required

Wavix 2FA Verification ID

Example:

"2953d4308f2e11ecb75fcdafd6d2d687"

Body

application/json
code
string
required

The code entered by an end user

Example:

"123456"

Response

is_valid
boolean
required

Indicates whether the entered code is valid

Example:

true

I