Manually extend a domain's registration

Manually extend a domain's registration. This is useful if an automatic renewal failed or if you want to ensure your domain remains registered. The API returns an order ID and invoice details needed to complete the renewal.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/domain-renew/{id}
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domain-renew/19618" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "order_id": 0,
    "invoice_id": "string",
    "redirect_url": "string",
    "message": "string"
  }
}