run_delivery_report
Generate delivery performance reports for Google Ad Manager campaigns, showing impressions, clicks, CTR, and revenue by order and line item with customizable date ranges.
Instructions
Run a delivery report for orders and line items.
Returns impressions, clicks, CTR, and revenue broken down by order and line item.
Args: date_range_type: Date range for the report. Valid values: - TODAY, YESTERDAY, LAST_WEEK, LAST_MONTH, LAST_3_MONTHS, REACH_LIFETIME - CUSTOM_DATE (requires start and end date parameters) start_year: Start date year (required if date_range_type is CUSTOM_DATE) start_month: Start date month 1-12 (required if date_range_type is CUSTOM_DATE) start_day: Start date day 1-31 (required if date_range_type is CUSTOM_DATE) end_year: End date year (required if date_range_type is CUSTOM_DATE) end_month: End date month 1-12 (required if date_range_type is CUSTOM_DATE) end_day: End date day 1-31 (required if date_range_type is CUSTOM_DATE) order_id: Optional order ID to filter by line_item_id: Optional line item ID to filter by include_date_breakdown: If True, includes daily breakdown (default: True) timeout_seconds: Maximum time to wait for report (default: 120)
Returns report data with impressions, clicks, CTR, and revenue statistics.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date_range_type | No | LAST_WEEK | |
| start_year | No | ||
| start_month | No | ||
| start_day | No | ||
| end_year | No | ||
| end_month | No | ||
| end_day | No | ||
| order_id | No | ||
| line_item_id | No | ||
| include_date_breakdown | No | ||
| timeout_seconds | No |