In the UI I can click on a campaign, goto audiences, click add audience 
segments and add each of them one by one.

I would like to replicate this process programatically.
Right now i'm finding that there are around 1000 user_interest IDs and 
applying them via
var operation = {
create: {
resourceName: resourceName,
userInterest: {
userInterestCategory: `customers/${accId}/userInterests/${userInterestId}`,
},
},
};

is very expensive on my API quota- for 10 campaigns I quickly do 1000 
operations.

Is it possible to add all available user_interests in a cheaper way? like

var operation = {
create: {
resourceName: resourceName,
userInterest: {
userInterestCategory: `customers/${accId}/userInterests/1`,
userInterestCategory: `customers/${accId}/userInterests/2`,
userInterestCategory: `customers/${accId}/userInterests/3`,
userInterestCategory: `customers/${accId}/userInterests/4`,
},
},
};
:

And what about for detailed_demographics?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2f7636e0-4351-4af6-9140-c4f23ac9b135n%40googlegroups.com.

Reply via email to