Synchronize domain status with registrar

Synchronize the status of a specific domain with its registrar to ensure your system has the latest information. This endpoint returns a `requestId` to track the synchronization process.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
domainIds array
id integer

Responses

200
success boolean
timestamp string
requestId string
data object
401
error string
message string
code string
timestamp string
requestId string
504
error string
message string
code string
timestamp string
requestId string
POST https://cloud.hostup.se/api/domains/{id}/status-sync
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domains/20629/status-sync" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "domainIds": [
      "string"
    ],
    "id": 0
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "syncSuccess": true,
    "domain": {
      "id": "string",
      "client_id": "string",
      "order_id": "string",
      "tld_id": "string",
      "name": "string",
      "server_id": "string",
      "reg_module": "string",
      "payment_module": "string",
      "date_created": "string",
      "firstpayment": "string",
      "recurring_amount": "string",
      "discount_total": "string",
      "price": "string",
      "period": "string",
      "expires": "string",
      "type": "string",
      "status": "string",
      "label": "string",
      "next_due": "string",
      "next_invoice": "string",
      "idprotection": "string",
      "nameservers": [
        "string"
      ],
      "autorenew": "string",
      "registry_autorenew": "string",
      "reglock": "string",
      "manual": "string",
      "premium": "string",
      "epp_code": "string",
      "notes": "string",
      "extended": "string",
      "synch_date": "string",
      "nsips": true,
      "failed_syncs": "string",
      "contract_id": "string",
      "discount_id": "string",
      "brand_id": "string",
      "group_id": "string",
      "sort_order": "string",
      "lastname": "string",
      "firstname": "string",
      "companyname": "string",
      "tld_category": "string",
      "tld_name": "string",
      "reg_module_diff": "string",
      "contract_template": "string",
      "contract_number": "string",
      "currency_id": "string",
      "custom": true,
      "tlds": [
        "string"
      ],
      "discount": "string",
      "raw_status": "string"
    },
    "previousStatus": "string",
    "newStatus": "string",
    "statusChanged": true,
    "statusChangedToActive": true,
    "info": "string",
    "error": [
      "string"
    ],
    "revertAttempted": true,
    "revertSucceeded": true,
    "revertError": "string",
    "doubleSyncAttempted": true,
    "doubleSyncSucceeded": true,
    "doubleSyncError": "string"
  }
}
Request Body
{
  "domainIds": [
    "string"
  ],
  "id": 0
}