List your email endpoints

Retrieve a list of all configured email endpoints associated with your account. Endpoint IDs may be needed for subsequent actions like support requests.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/email-endpoints
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/email-endpoints" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "email_endpoints": [
      "string"
    ]
  }
}