Update an email endpoint

Change the name or scope of a specific email endpoint. This is useful when organizing or adjusting how email services are managed for your account.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
name string required
email string required
scope string required

Responses

200
success boolean
timestamp string
requestId string
data object
PUT https://cloud.hostup.se/api/email-endpoints/{id}
For AI assistants
cURL
curl -X PUT "https://cloud.hostup.se/api/email-endpoints/63" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string",
    "email": "string",
    "scope": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "email_endpoint": {
      "id": 0,
      "client_id": "string",
      "channel_type": "string",
      "scope": "string",
      "monitor_id": "string",
      "name": "string",
      "enabled": true,
      "config": {
        "address": "string",
        "verified": true
      },
      "created_at": "string",
      "updated_at": "string",
      "last_used_at": "string",
      "auto_paused": true,
      "auto_paused_reason": "string",
      "auto_paused_at": "string",
      "auto_resume_available_at": "string"
    },
    "message": "string"
  }
}
Request Body
{
  "name": "string",
  "email": "string",
  "scope": "string"
}