get_report_results
Fetch advertising campaign report results from Kayzen Analytics by providing a report ID and optional date range to analyze performance data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date in YYYY-MM-DD format | |
report_id | Yes | ID of the report to fetch results for | |
start_date | No | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date in YYYY-MM-DD format",
"type": "string"
},
"report_id": {
"description": "ID of the report to fetch results for",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"report_id"
],
"type": "object"
}