get_cdn_zone_logs
Retrieve CDN zone access logs by domain or ID with date range filtering to analyze traffic patterns and request details.
Instructions
Get access logs for a CDN zone. Smart identifier resolution: use origin domain, CDN domain, or UUID.
Args: zone_identifier: The CDN zone origin domain, CDN domain, or ID start_date: Start date for logs (ISO format: YYYY-MM-DD) end_date: End date for logs (ISO format: YYYY-MM-DD) per_page: Number of items per page (default: 25)
Returns: CDN zone access logs with request details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
per_page | No | ||
start_date | No | ||
zone_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 25,
"title": "Per Page"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Date"
},
"zone_identifier": {
"title": "Zone Identifier",
"type": "string"
}
},
"required": [
"zone_identifier"
],
"type": "object"
}