Verify an email address

Confirm that an email address is valid and that the verification code sent to it is correct. This is a required step to complete the configuration of email services associated with your web hosting. The endpoint returns an ID for follow-up.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
code string required

Responses

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