curl --request GET \
--url http://localhost:8000/api/v1/google-ads/customers/csv \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Retrieve all available Google Ads customer IDs as CSV format.
Args: oauth2_token (OAuth2Token): The OAuth2 token for the user current_user (User): The authenticated user
Returns: StreamingResponse: CSV file containing customer data
curl --request GET \
--url http://localhost:8000/api/v1/google-ads/customers/csv \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}