Verify email address with a code

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.

Headers

Accept Example
Content-Type Example

Body

required
application/json
email string required
code string required
language string · enum required
en
sv

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/email-verify/verify
For AI assistants
cURL
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"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string"
  }
}
Request Body
{
  "email": "string",
  "code": "string",
  "language": "en"
}