Get JetBackup status for your web hosting

Check the status of JetBackup, a backup tool, on your web hosting account. This is useful for verifying backup status or troubleshooting potential issues.

Path Parameters

hostingId integer · min: 1 required Example

Unique hosting 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/hosting/{hostingId}/jetbackup/info
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/hosting/8665/jetbackup/info" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "accountId": "string",
    "cpanelUsername": "string",
    "info": {
      "errors": [
        "string"
      ],
      "data": "string",
      "warnings": "string",
      "messages": "string",
      "status": 0,
      "metadata": {}
    }
  }
}