How to use the google-ads-api.enums.AdGroupCriterionError function in google-ads-api

To help you get started, we’ve selected a few google-ads-api examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Opteo / google-ads-api / examples / basic_operations / add_keywords.js View on Github external
ad_group: 'customers/123/adGroups/321',
        status: enums.AdGroupCriterionStatus.ENABLED,
        keyword: {
            text: 'hotels london',
            match_type: enums.KeywordMatchType.EXACT,
        },
    }

    try {
        const { results } = await customer.adGroupCriterion.create(keyword)
        /*
            The newly created ad group criterion will have a resource name in the following format:
            "customers/{customer_id}/adGroupCriteria/{ad_group_id}~{criterion_id}"
        */
    } catch (err) {
        if (err.code.adGroupCriterionError === enums.AdGroupCriterionError.INVALID_KEYWORD_TEXT) {
            console.log(`Keyword with text "${keyword.text}" is invalid!`)
        }
    }
}