negative_kws_op = ads_client.get_type("CustomerNegativeCriterionOperation")
negative_kws = negative_kws_op.create
negative_kws.negative_keyword_list.shared_set = customers/{my_customer}/sharedSets/{shared_set_that_i_created}
customer_negative_criterion_service = ads_client.get_service("CustomerNegativeCriterionService")
customer_negative_criterion_service.mutate_customer_negative_criteria(
customer_id=customer_id, operations=[negative_kws_op]
)
Is something that I do wrong ?
Thanks in advance for your help!
Ionut