Change email account quota

Modify the storage space (quota) for an email account.

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
quota number required

New quota in MB

Responses

200 Successful response

No response body

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