Verify an email address using a one-time code sent to the user. This confirms the email address is correct. The endpoint returns a unique ID for tracking the verification process.
Accept Example Content-Type Example email string required code string required language string · enum required en sv success boolean timestamp string requestId string data object https://cloud.hostup.se/api/email-verify/verify curl -X POST "https://cloud.hostup.se/api/email-verify/verify" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "string",
"code": "string",
"language": "en"
}' {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"success": true,
"message": "string"
}
} {
"email": "string",
"code": "string",
"language": "en"
}