google_ads_add_price_extension
Add a price extension to a Google Ads campaign to display product listings with prices, enabling users to browse offers directly from the ad.
Instructions
Add price extension to a campaign.
Price extensions display a list of products/services with prices, allowing users to browse your offerings directly in the ad.
Args: customer_id: Google Ads customer ID (10 digits, no hyphens) campaign_id: Campaign ID to add price extension price_qualifier: Qualifier (FROM, UP_TO, AVERAGE, NONE) items_json: JSON array of price items (3-8 items)
Price Item Schema:
[
{
"header": "Basic Plan",
"description": "Perfect for individuals",
"price": 9.99,
"final_url": "https://example.com/basic"
}
]Returns: Price extension creation result
Example: google_ads_add_price_extension( customer_id="1234567890", campaign_id="12345678", price_qualifier="FROM", items_json='[{"header": "Basic", "price": 9.99, "final_url": "https://example.com/basic"}]' )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer_id | Yes | ||
| campaign_id | Yes | ||
| price_qualifier | Yes | ||
| items_json | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |