Confirm email verification and clear cache

Confirm that an email verification has been completed and clear relevant caches to ensure updates take effect quickly. The API returns a unique ID for tracking.

Headers

Accept Example
Content-Type Example

Body

required
application/json
email string required
approved string required

Responses

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