get_campaigns_report
Retrieve campaign performance reports from Ogury's API with date ranges and filtering options to analyze advertising effectiveness.
Instructions
Get campaign performance report with flexible filtering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | No | Account IDs (comma-separated) | |
brandId | No | Brand ID | |
campaignId | No | Campaign ID | |
endDate | Yes | End date in YYYY-MM-DD format (required) | |
identifier1 | No | External identifier 1 | |
identifier2 | No | External identifier 2 | |
identifier3 | No | External identifier 3 | |
startDate | Yes | Start date in YYYY-MM-DD format (required) |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "Account IDs (comma-separated)",
"type": "string"
},
"brandId": {
"description": "Brand ID",
"type": "string"
},
"campaignId": {
"description": "Campaign ID",
"type": "number"
},
"endDate": {
"description": "End date in YYYY-MM-DD format (required)",
"type": "string"
},
"identifier1": {
"description": "External identifier 1",
"type": "string"
},
"identifier2": {
"description": "External identifier 2",
"type": "string"
},
"identifier3": {
"description": "External identifier 3",
"type": "string"
},
"startDate": {
"description": "Start date in YYYY-MM-DD format (required)",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}