google_ads_add_keywords
Add keywords to a Google Ads ad group. Specify keyword text, match type (EXACT, PHRASE, BROAD), and optional default CPC bid.
Instructions
Add keywords to an ad group.
Args: customer_id: Customer ID (without hyphens) ad_group_id: Ad group ID keywords: List of keyword dicts with 'text' and 'match_type' (EXACT, PHRASE, BROAD) cpc_bid: Optional default CPC bid for all keywords in currency units
Returns: Success message with keyword count
Example: keywords = [ {"text": "running shoes", "match_type": "PHRASE"}, {"text": "nike shoes", "match_type": "EXACT"}, {"text": "athletic footwear", "match_type": "BROAD"} ]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer_id | Yes | ||
| ad_group_id | Yes | ||
| keywords | Yes | ||
| cpc_bid | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |