google_ads_batch_update_bids
Update CPC bids for multiple keywords or ad groups in a single batch operation using JSON input.
Instructions
Update CPC bids for multiple keywords or ad groups in a single batch operation.
Args: customer_id: Google Ads customer ID (10 digits, no hyphens) entity_type: Type of entity (keyword or ad_group) bid_updates_json: JSON array of bid update configurations
Bid Update Schema (Keywords):
[
{
"ad_group_id": "12345678",
"criterion_id": "87654321",
"cpc_bid": 2.50
}
]Bid Update Schema (Ad Groups):
[
{
"ad_group_id": "12345678",
"cpc_bid": 2.50
}
]Returns: Batch operation result with success/failure details
Example: google_ads_batch_update_bids( customer_id="1234567890", entity_type="keyword", bid_updates_json='[{"ad_group_id": "12345678", "criterion_id": "87654321", "cpc_bid": 2.50}]' )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer_id | Yes | ||
| entity_type | Yes | ||
| bid_updates_json | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |