add_assets_to_group
Link multiple existing assets to an asset group in a single batch operation, specifying each asset's resource name and field type (headline, image, logo, etc.) for efficient Google Ads management.
Instructions
Add assets to an existing asset group (batch link operation).
Args: customer_id: Google Ads customer ID. asset_group_id: Asset group ID. assets: List of asset dicts, each with: - asset_resource_name (str): Full asset resource name. - field_type (str): Asset field type -- 'HEADLINE', 'LONG_HEADLINE', 'DESCRIPTION', 'BUSINESS_NAME', 'MARKETING_IMAGE', 'SQUARE_MARKETING_IMAGE', 'LOGO', 'YOUTUBE_VIDEO', 'CALL_TO_ACTION_SELECTION'.
Example: assets=[ {"asset_resource_name": "customers/123/assets/456", "field_type": "HEADLINE"}, {"asset_resource_name": "customers/123/assets/789", "field_type": "MARKETING_IMAGE"}, ]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assets | Yes | ||
| customer_id | Yes | ||
| asset_group_id | Yes |