Check for a pending domain renewal order

Check if a specific domain has an ongoing or pending renewal order. This helps prevent accidental duplicate renewals and provides information on your domain's status. The ID submitted is the domain's ID.

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
GET https://cloud.hostup.se/api/domain-pending-renewal/{id}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domain-pending-renewal/1705" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "hasPendingOrder": true,
    "orderId": "string",
    "orderNumber": "string",
    "invoiceId": "string",
    "proformaId": "string",
    "invoiceStatus": "string",
    "total": "string",
    "dateCreated": "string"
  }
}