/
Brain Feature Summary
Brain Feature Summary Report
| Field | Time Windows | Rollups |
|---|---|---|
| Dimensions | ||
agg_timestamp | yesterday, last_X_days, month_to_date | by_day |
advertiser_id | Any | Any |
advertiser_name | Any | Any |
agency_id | Any | Any |
agency_name | Any | Any |
campaign_id | Any | Any |
campaign_name | Any | Any |
feature | Any | Any |
index | Any | Any |
model_goal | Any | Any |
organization_id | Any | Any |
organization_name | Any | Any |
position | Any | Any |
| Metrics |
Yes
yesterday, last_X_days, month_to_date
by_day
Security
Auth0(Required scopes: offline_access)
One of:
Maximum number of results to return. Only applicable for streaming responses. No limit if absent or null.
POST
- Time Window
- Date Range
curl -i -X POST \
https://api.mediamath.com/reporting/v2/brain-feature-summary \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"fields": [
"campaign_id",
"impressions"
],
"filters": [
{
"field": "organization_id",
"op": "=",
"value": 123456
},
{
"field": "agency_id",
"value": [
123456,
789012
]
},
{
"field": "advertiser_id",
"value": 123456
},
{
"field": "campaign_name",
"op": "=~",
"value": "Test Campaign"
}
],
"order": [
{
"desc": false,
"field": "agg_timestamp",
"nulls_last": true
}
],
"pagination": {
"page_index": 0,
"page_size": 100
},
"rollup": "by_day",
"time_window": "last_7_days"
}'Response
- application/json
- application/jsonl
{ "meta": { "items_count": 3, "page_index": 0, "status": "OK", "total_items_count": 3, "total_pages": 1 }, "results": [ { … }, { … }, { … } ] }