Send a verification code to an email address

Send a verification code to a customer's email address to confirm identity for sensitive operations or account changes. The API returns a unique 'requestId' for tracking the operation in subsequent calls.

Headers

Accept Example
Content-Type Example

Body

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

Responses

200
success boolean
timestamp string
requestId string
data object
429
error string
message string
retryAfter string
requestId string
code string
timestamp string
POST https://cloud.hostup.se/api/email-verify/send
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/email-verify/send" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "string",
    "language": "en"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string"
  }
}
Request Body
{
  "email": "string",
  "language": "en"
}