Change domain billing period

Modify the annual billing period for a specific domain. Changing the period creates a follow-up task that you can track using the returned requestId.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
period string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/domains/{id}/billing-cycle
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domains/10202/billing-cycle" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "period": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string",
    "newPeriod": "string",
    "domainName": "string",
    "recurringAmount": "string"
  }
}
Request Body
{
  "period": "string"
}