Hello everyone,
I have a script that is creating Video Ad Groups, and I'd like to define my Age targetting after creating the ad group.
Issue is, I don't manage to add multiple age groups at once.
Here is my piece of code:
var videoAgeBuilder = videoAdGroup.videoTargeting().newAgeBuilder();
var videoAgeOperation = videoAgeBuilder
.withAgeRange('AGE_RANGE_18_24')
.withAgeRange('AGE_RANGE_25_34') // required
.withAgeRange('AGE_RANGE_UNDETERMINED') // required
.build();
Tried multiple ways (using "+" or "&") and it never seems to work.
Thanks in advance for your help.