Batch manage WordPress installations for hosting accounts

Manage WordPress installations in batch for multiple hosting accounts simultaneously. This endpoint is specific to cPanel servers and returns a unique ID required for subsequent calls, for example, to retrieve the status or results of the operation.

Headers

Accept Example
Content-Type Example

Body

required
application/json
accountIds array required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/hosting/wordpress/batch
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/hosting/wordpress/batch" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "accountIds": [
      "string"
    ]
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "accounts": {
      "18262": {
        "success": true,
        "accountId": "string",
        "installations": [
          "string"
        ],
        "count": 0
      }
    },
    "totalAccounts": 0,
    "totalInstallations": 0
  }
}
Request Body
{
  "accountIds": [
    "string"
  ]
}