get_aggregate_data
Fetch aggregate data reports from the AppsFlyer Pull API, including daily, geo, and partner metrics, by specifying app ID, date range, and report type.
Instructions
Fetches aggregate data reports from the AppsFlyer Pull API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"AggregateDataInput": {
"properties": {
"app_id": {
"description": "The ID of the AppsFlyer app.",
"title": "App Id",
"type": "string"
},
"from_date": {
"description": "The start date of the data range (YYYY-MM-DD).",
"format": "date",
"title": "From Date",
"type": "string"
},
"report_type": {
"default": "daily_report",
"description": "The type of aggregate report to fetch.",
"enum": [
"partners_report",
"partners_by_date_report",
"daily_report",
"geo_report",
"geo_by_date_report"
],
"title": "Report Type",
"type": "string"
},
"to_date": {
"description": "The end date of the data range (YYYY-MM-DD).",
"format": "date",
"title": "To Date",
"type": "string"
}
},
"required": [
"app_id",
"from_date",
"to_date"
],
"title": "AggregateDataInput",
"type": "object"
}
},
"properties": {
"data": {
"$ref": "#/$defs/AggregateDataInput"
}
},
"required": [
"data"
],
"title": "get_aggregate_dataArguments",
"type": "object"
}