Skip to content

Verify email address with OTP

POST
/me/email/verify
curl --request POST \
--url https://example.com/me/email/verify \
--header 'Content-Type: application/json' \
--data '{ "email": "example", "otp": "example" }'
Media type application/json
object
email
required
string
otp
required
string
Example generated
{
"email": "example",
"otp": "example"
}
Media type application/json
object
name
required
Any of:
string
email
required
string
created_at
required
string
updated_at
required
string
Example generated
{
"name": "example",
"email": "example",
"created_at": "example",
"updated_at": "example"
}