Hi Nick,

Could you confirm on why you were able to say that "Network isn't a 
possible criteria to target"? Network is not a criterion, therefore, you 
really could not update it in the CampaignCriterion object. You can only 
update the network setting 
<https://developers.google.com/adwords/api/docs/reference/v201710/CampaignService.Campaign#networksetting>
 of 
a draft campaign in the Campaign 
<https://developers.google.com/adwords/api/docs/reference/v201710/CampaignService.Campaign>
 object. 
See sample SOAP request snippets below on creating a draft campaign (via 
DraftService.mutate() 
<https://developers.google.com/adwords/api/docs/reference/v201710/DraftService#mutate>)
 
and modifying its network setting (via CampaignService.mutate() 
<https://developers.google.com/adwords/api/docs/reference/v201710/CampaignService#mutate>
):

<soapenv:Body>
    <mutate xmlns="https://adwords.google.com/api/adwords/cm/v201710";>
        <operations>
            <operator>ADD</operator>
            <operand>
                <baseCampaignId>XXXXXXXXXX</baseCampaignId>
                <draftName>Test Draft Sample</draftName>
            </operand>
        </operations>
    </mutate>
</soapenv:Body>

<soapenv:Body>
  <mutate xmlns="https://adwords.google.com/api/adwords/cm/v201710";>
    <operations>
        <operator>SET</operator>
        <operand>
            <id>XXXXXXXXXXXX</id> //This is the draft campaign ID
            <networkSetting>
                
*<targetGoogleSearch>true</targetGoogleSearch>                
<targetSearchNetwork>true</targetSearchNetwork>*
            </networkSetting>
        </operand>
    </operations>
  </mutate>
</soapenv:Body>

You can emulate the SOAP requests above and let me know if this works on 
your end.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e9edd8cf-25a3-43ba-ac60-1506c91c1041%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to