Get details of a specific domain order

Retrieve detailed information about a specific domain order, including status, payment information, and domain name. Use this endpoint to see the status of a recent domain registration or transfer. The endpoint returns an order ID for tracking.

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
401
error string
message string
code string
timestamp string
requestId string
GET https://cloud.hostup.se/api/domain-order/{id}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domain-order/32926" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "details": {
      "id": "string",
      "number": "string",
      "payment_module": "string",
      "client_id": "string",
      "staff_member_id": "string",
      "invoice_id": "string",
      "total": "string",
      "currency_id": "string",
      "date_created": "string",
      "status": "string",
      "order_ip": "string",
      "notes": [
        {
          "id": "string",
          "type": "string",
          "rel_id": "string",
          "admin_id": "string",
          "date": "string",
          "note": "string",
          "title": "string",
          "flags": "string",
          "firstname": "string",
          "lastname": "string"
        }
      ],
      "metadata": {
        "invoice_id": "string",
        "total": "string",
        "gateway_id": "string",
        "client_id": 0
      },
      "contract_accepted_date": "string",
      "contract_accepted_by": "string",
      "commitment_date": "string",
      "type": "string",
      "firstname": "string",
      "lastname": "string",
      "companyname": "string",
      "module": "string",
      "modusubtype": "string",
      "invtotal": "string",
      "invstatus": "string",
      "invcredit": "string",
      "invsubtotal2": "string",
      "admin_firstname": "string",
      "admin_lastname": "string",
      "balance": "string",
      "hosting": [
        "string"
      ],
      "addons": [
        "string"
      ],
      "upgrades": [
        "string"
      ],
      "fieldupgrades": [
        "string"
      ],
      "domains": [
        {
          "id": "string",
          "name": "string",
          "type": "string",
          "firstpayment": "string",
          "period": "string",
          "recurring_amount": "string",
          "tld_id": "string",
          "category_id": "string",
          "status": "string",
          "reg_module": "string",
          "nameservers": [
            "string"
          ],
          "nsips": [
            "string"
          ],
          "item_type": "string"
        }
      ],
      "contracts": [
        "string"
      ],
      "currency": {
        "code": "string",
        "iso": "string",
        "sign": "string",
        "format": "string",
        "decimal": "string",
        "rounding": "string",
        "rounding_mode": "string",
        "id": 0,
        "rate": 0
      },
      "item_count": 0
    }
  }
}