Method
POST /v1/verify/email/confirm
Body Parameters
Headers
Bearer token (e.g.
Authorization: Bearer YOUR_API_KEY)application/jsoncurl -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" }'
{ "ok": true }
Validate the code delivered by the email verification challenge.
POST /v1/verify/email/confirm
Authorization: Bearer YOUR_API_KEY)application/jsoncurl -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" }'
{ "ok": true }
/v1/verify/email/start. Implement code persistence and expiry logic in your email challenge workflow before relying on it for customer onboarding.