Create email forwarder

Create a new email forwarder. Emails sent to the specified address will be forwarded to the given destinations.

Path Parameters

accountId integer · min: 1 required

accountId parameter

Headers

Accept Example
Content-Type Example

Body

required
application/json
email string required
domain string required
destination string required

Destination(s), comma-separated

Responses

200 Successful response

No response body

POST https://cloud.hostup.se/api/hosting/{accountId}/email-forwarders
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/hosting/0/email-forwarders" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "string",
    "domain": "string",
    "destination": "string"
  }'
Response
{}
Request Body
{
  "email": "string",
  "domain": "string",
  "destination": "string"
}