Renew multiple domains simultaneously

Renew multiple domain names at once. After renewal, a jobId is returned to retrieve the result via GET /api/domain-check/{jobId} or other job status endpoints.

Headers

Accept Example
Content-Type Example

Body

required
application/json
domainIds array required

Responses

200
success boolean
timestamp string
requestId string
data object
504
error string
message string
code string
timestamp string
requestId string
POST https://cloud.hostup.se/api/domains/bulk/renew
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domains/bulk/renew" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "domainIds": [
      "string"
    ]
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "jobId": "string",
    "domains_queued": 0,
    "domains_skipped": 0,
    "skipped": [
      {
        "id": "string",
        "domainName": "string",
        "reason": "string",
        "reasonKey": "string",
        "orderNumber": "string",
        "invoiceId": "string"
      }
    ]
  }
}
Request Body
{
  "domainIds": [
    "string"
  ]
}