Skip to main content
POST
/
api
/
v1
/
gate
/
{project_id}
/
auth
/
verify-email
Verify email
curl --request POST \
  --url https://org-api.hexoforge.dev/api/v1/gate/{project_id}/auth/verify-email \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "email": "<string>",
  "otp": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://orchestrator-docs.hexoforge.dev/llms.txt

Use this file to discover all available pages before exploring further.

Verifies email using the OTP sent during registration. Requires X-API-Key.

Request body

email
string
required
Valid email.
otp
string
required
Six-digit OTP.

Response

204 No Content — empty body.

Status codes

CodeMeaning
204Email verified
400Invalid or expired OTP
429Rate limited