Disable email forwarding for a domain

Turn off email forwarding for a specific domain. This stops emails from being sent to another address.

Headers

Accept Example
Content-Type Example

Body

required
application/json
domain string · enum required
example31.com
example32.com
example33.com
example34.com
example35.com
example36.com
example37.com
example30.com

Responses

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