curl --request GET \
--url http://localhost:8000/api/v1/google-ads/overview/csv \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Get overview metrics for Google Ads account as CSV format.
Args: customer_id: The Google Ads customer ID login_customer_id: Optional manager account ID start_date (str): Start date for the data range (YYYY-MM-DD). Defaults to 30 days ago. end_date (str): End date for the data range (YYYY-MM-DD). Defaults to today. oauth2_token: OAuth2 token for authentication
Returns: StreamingResponse: CSV file containing account overview data
curl --request GET \
--url http://localhost:8000/api/v1/google-ads/overview/csv \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}