Critical BackupGet Backup Zone Logs

Get Backup Zone Logs

Get a paginated, filterable table of sync log entries for a zone linked to a critical backup job.

curl -X POST "https://api.5centscdn.com/v2/cb/42/zone/2102/logs" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "draw": 1,
  "recordsTotal": 300,
  "recordsFiltered": 12,
  "data": [
    {
      "k": 1,
      "date": 1717236000000,
      "level": "FATAL",
      "msg": "Failed to create file system: failed to configure storage provider - authentication token missing",
      "log": "eyJtc2ciOiJTYW1wbGUgbG9nIG1lc3NhZ2UifQ==",
      "DT_RowClass": null
    }
  ]
}
POST
/cb/{backupid}/zone/{zoneid}/logs
POST
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-API-Key)
X-API-Keystring
Required

API key (sent in header)

path
backupidinteger
Required

Critical Backup job ID

path
zoneidinteger
Required

ID of the CDN zone linked to the backup

Content-Typestring
Required

The media type of the request body

Options: application/json
No request body parameters defined
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-Keystring
Required

API Key for authentication. Provide your API key in the header.

Path Parameters

backupidinteger
Required

Critical Backup job ID

Example:
42
zoneidinteger
Required

ID of the CDN zone linked to the backup

Example:
2102

Body

application/json
datastring
Required

Raw application/json data

Responses

drawinteger

Echoed draw counter from the request, used to match responses to requests.

recordsTotalinteger

Total number of log entries for this zone link.

recordsFilteredinteger

Number of log entries matching the current search/filter.

dataarray

Array of log entries.