Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Confirm email verification token

POST/v1/auth/email-verification/confirm
Request body
requiredapplication/json
emailstringrequired
Email address to verify
min length 1
tokenstringrequired
Verification token from email
min length 1
Responses
200OK
messagestringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X POST "/v1/auth/email-verification/confirm" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "string",
  "token": "string"
}'
Response
{
  "message": "string"
}