Hi,
Thank you for reaching out to the Google Ads API support team.
Based on the information provided, I understand that you are looking for guidance in pulling the keyword customizers from the Google Ads API. As the keyword customizers are created using the
AdGroupCriterionCustomizers method, you can pull them using the
ad_group_criterion_customizer resource from the Google Ads API. However, I am providing a sample GAQL query to pull the keyword customizers from the Google Ads API:
SELECT ad_group_criterion_customizer.ad_group_criterion, ad_group_criterion_customizer.resource_name,
ad_group_criterion_customizer.customizer_attribute, ad_group_criterion_customizer.status,
ad_group_criterion_customizer.value.string_value, ad_group_criterion_customizer.value.type FROM
ad_group_criterion_customizer
You can use the
search or
searchStream methods in making the API calls while retrieving the data. Additionally, you can utilize the
Google Ads Query Builder and
Query Validator to build and validate the queries for retrieving the data from the Google Ads API.