Skip to main content

Method

POST /v1/verify/email/confirm

Body Parameters

Headers

Authorization
string
Bearer token (e.g. Authorization: Bearer YOUR_API_KEY)
content-type
string
application/json

Request Example

curl -X POST https://api.voyantcloud.com/v1/verify/email/confirm \
  -H "Authorization: Bearer $VOYANT_API_KEY" \
  -H "content-type: application/json" \
  -d '{ "email": "[email protected]", "code": "583912" }'

Response

{ "ok": true }
Pair this endpoint with /v1/verify/email/start. Implement code persistence and expiry logic in your email challenge workflow before relying on it for customer onboarding.