Hi Veselin,

To mimic the *Only show ideas closely related to my search terms *functionality 
in the API, you need to use both RelatedToQuerySearchParameter 
<https://developers.google.com/adwords/api/docs/reference/latest/TargetingIdeaService.RelatedToQuerySearchParameter>
 
and IdeaTextFilterSearchParameter 
<https://developers.google.com/adwords/api/docs/reference/latest/TargetingIdeaService.IdeaTextFilterSearchParameter>
 with 
the same keywords at the same time. Based off of your example, it would 
look something like this:

$relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
$relatedToQuerySearchParameter->queries = array($keyword);

$ideaTextFilterSearchParameter = new IdeaTextFilterSearchParameter();
$ideaTextFilterSearchParameter->included = array($keyword);

$selector->searchParameters[] = $relatedToQuerySearchParameter;
$selector->searchParameters[] = $ideaTextFilterSearchParameter;
...

Best,
Nadine, AdWords API Team

On Wednesday, May 13, 2015 at 1:30:31 PM UTC-4, veselin.pesov...@gmail.com 
wrote:
>
> Thank you Nadine. 
>
> However, that is not what I wanted to accomplish, I am aware of that 
> functionality. 
>
> Basically what I'm saying is that info for keywords doesn't match when 
> this 'Only show ideas closely related to my search terms' is selected and 
> when not. 
> For example, if I search for "cheap computer" the search volume would be 
> let's say 15 000 000 because Google sums up searches for "cheap pc's", 
> "cheap electronics" and similar. And if I select EXACT match, search volume 
> would be much less, let's say 500 000, because Google will include only 
> keywords like "used cheap computer", "cheap computer on sale" and similar, 
> and not the ones it used to above that even don't contain 'computer' in 
> their text.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/bf34c41e-467d-40e9-9df3-22b88991c11b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to