Skip to content
TALA
Esc
navigateopen⌘Jpreview

This endpoint is to be used after creating account to verify the email used before access to the system

POST/api/auth/verify-email
Request body
requiredapplication/json
tokenstringrequired
emailstringrequired
Responses
200OK
any
400Error
any
500Internal Server Error
any
Try it
Server
Bodyapplication/json
Request
curl -X POST "http://localhost:8000/api/auth/verify-email" \
  -H "Content-Type: application/json" \
  -d '{
  "token": "string",
  "email": "string"
}'
Response
{
  "message": "Email is verified"
}