Hi,

Ok so I was finally able to retrieve the Boolean value of each network.

I add my piece of code if it can help someone else.

Thank you !

//Definition


//Ads will be served with Google.com search results
//targetGoogleSearch


//Ads will be served on partner sites in the Google Search Network
//targetSearchNetwork


//Ads will be served on specified placements in the Google Display Network
//targetContentNetwork


//Ads will be served on the Google Partner Network
//targetPartnerSearchNetwork


$x = $user->GetService('CampaignService', ADWORDS_VERSION);
$selector = new Selector();
$selector->fields = array(
 'Id', 
 'Name', 
 'Status', 
 'TargetGoogleSearch', 
 'TargetSearchNetwork', 
 'TargetContentNetwork', 
 'TargetPartnerSearchNetwork'
);


$campaign = $x->get($selector);


print_r("<pre>");
print_r($campaign->entries);
print_r("</pre>");


//Or you can get value with for each
foreach ($campaign->entries as $result) {
  printf("<strong>Id:</strong> %s<br>", $result->id);
  printf("<strong>Name:</strong> %s<br>", $result->name);
  printf("<strong>Status:</strong> %s<br>", $result->status);
  printf("<strong>Google.com search results:</strong> %s<br>", $result->
networkSetting->targetGoogleSearch);
}



On Thursday, November 19, 2015 at 4:05:57 PM UTC-5, Anthony Madrigal wrote:
>
> Hi,
>
> The campaign's AdvertisingChannelType for *Search Network with Display 
> Select* is Search. In order to differentiate whether or not it is only a 
> search network or search *and *display network, use the fields 
> *targetSearchNetwork 
> *and *targetContentNetwork *in the NetworkSetting 
> <https://developers.google.com/adwords/api/docs/reference/v201509/CampaignService.NetworkSetting>.
>  
> These are boolean values and should both be set to *true* if they fit 
> this network type.
>
> Cheers,
> Anthony
> 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8c83d3d6-1699-45f9-b08d-4d88ca650382%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to