Resend domain verification email

Send a domain verification email again if it was not received. This is useful if the original email was accidentally deleted or went to spam. Returns a `requestId` to track the request status in subsequent calls.

Headers

Accept Example
Content-Type Example

Body

required
application/json
email string required
domain string required

Responses

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