Skip to main content
POST
/
api
/
v1
/
register-email-code
/
verify
Register (email OTP) - verify code
curl --request POST \
  --url https://api.flowxi.app/api/v1/register-email-code/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "code": "123456"
}
'
{
  "code": "OTP_VALID",
  "message": "OTP valid.",
  "valid": true
}

Body

application/json
email
string<email>
required
code
string
required

6-digit code.

Example:

"123456"

Response

OTP valid.

code
string
required
Example:

"OK"

message
string
required
Example:

"OK"

valid
boolean
required
Example:

true