Skip to main content
POST
/
auth
/
verify-email
Verify email
curl --request POST \
  --url https://api.example.com/auth/verify-email \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "verification-token-uuid"
}
'
{
  "message": "Email verified successfully"
}

Body

application/json
token
string
required
Example:

"verification-token-uuid"

Response

Email verified successfully

message
string
required
Example:

"Email verified successfully"