XML is:

<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:tns=
"https://adwords.google.com/api/adwords/o/v201406"; xmlns:ns0=
"https://adwords.google.com/api/adwords/o/v201406"; xmlns:ns1=
"https://adwords.google.com/api/adwords/cm/v201406"; xmlns:ns2=
"http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"; xmlns:SOAP-ENV=
"http://schemas.xmlsoap.org/soap/envelope/";
><SOAP-ENV:Header><tns:RequestHeader><tns:clientCustomerId xmlns:tns=
"https://adwords.google.com/api/adwords/cm/v201406";>632-961-2332
</tns:clientCustomerId><tns:developerToken xmlns:tns=
"https://adwords.google.com/api/adwords/cm/v201406";>s19eENCX72nZn63pWyabDA
</tns:developerToken><tns:userAgent xmlns:tns=
"https://adwords.google.com/api/adwords/cm/v201406";>INSERT_USER_AGENT_HERE 
(AwApi-Python, googleads/2.1.0, Python/2.7)</tns:userAgent><tns:validateOnly 
xmlns:tns="https://adwords.google.com/api/adwords/cm/v201406";>false
</tns:validateOnly><tns:partialFailure xmlns:tns=
"https://adwords.google.com/api/adwords/cm/v201406";>false
</tns:partialFailure></tns:RequestHeader></SOAP-ENV:Header><ns2:Body><ns0:get><ns0:selector><ns0:searchParameters
 
xsi:type="ns0:RelatedToQuerySearchParameter"><ns0:SearchParameter.Type>
RelatedToQuerySearchParameter</ns0:SearchParameter.Type><ns0:queries>space 
cruise</ns0:queries></ns0:searchParameters><ns0:ideaType>PLACEMENT
</ns0:ideaType><ns0:requestType>IDEAS
</ns0:requestType><ns0:requestedAttributeTypes>PLACEMENT_NAME
</ns0:requestedAttributeTypes><ns0:paging><ns1:startIndex>0
</ns1:startIndex><ns1:numberResults>800
</ns1:numberResults></ns0:paging></ns0:selector></ns0:get></ns2:Body></SOAP-ENV:Envelope>
DEBUG:suds.transport.http:received:
CODE: 200
HEADERS: {'x-xss-protection': '1; mode=block', 'x-content-type-options': 
'nosniff', 'expires': 'Mon, 17 Nov 2014 11:41:56 GMT', 'server': 'GSE', 
'connection': 'close', 'cache-control': 'private, max-age=0', 'date': 'Mon, 
17 Nov 2014 11:41:56 GMT', 'x-frame-options': 'SAMEORIGIN', 'content-type': 
'text/xml; charset=UTF-8'}
MESSAGE:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";
><soap:Header><ResponseHeader xmlns:ns2=
"https://adwords.google.com/api/adwords/cm/v201406"; xmlns=
"https://adwords.google.com/api/adwords/o/v201406";><ns2:requestId>
0005080c772b23f90ae5838a11003b4b</ns2:requestId><ns2:serviceName>
AccountService</ns2:serviceName><ns2:methodName>get
</ns2:methodName><ns2:operations>0</ns2:operations><ns2:responseTime>686
</ns2:responseTime></ResponseHeader></soap:Header><soap:Body><getResponse 
xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201406"; xmlns=
"https://adwords.google.com/api/adwords/o/v201406";><rval><totalNumEntries>0
</totalNumEntries></rval></getResponse></soap:Body></soap:Envelope>
DEBUG:suds.transport.http:opening 
(https://adwords.google.com/api/adwords/o/v201406/TargetingIdeaService?wsdl)
DEBUG:suds.transport.http:sending:
URL: https://adwords.google.com/api/adwords/o/v201406/TargetingIdeaService
HEADERS: {'Soapaction': '""', 'SOAPAction': '""', 'Content-Type': 
'text/xml; charset=utf-8', 'Content-type': 'text/xml; charset=utf-8', 
'Authorization': 'Bearer 
ya29.wQDQS0At1fwR0Uapx3B-vfOekWgIsxaCMKIcM1hG3Tfi8paS4Qo0MJnp'}
MESSAGE:


Thanks








On Friday, November 14, 2014 2:01:55 PM UTC+2, Danial Klimkin wrote:
>
> Hello Berry,
>
>
> Could you please share the XML of the request you are sending and exact 
> server response for the failing call?
>
>
> -Danial, AdWords API Team.
>
>
> On Thursday, November 13, 2014 7:01:56 PM UTC+3, Berry wrote:
>>
>> Thanks.
>> In case I didn't clearly mention, I'm still using v201406, is the value 
>> no longer supported in that version also?
>> If so, Is there any workaround in which I can retrieve the placements 
>> ideas names (as allowed through GUI)?
>>
>> Regards
>>
>>
>>
>>
>> On Thursday, November 13, 2014 9:32:40 AM UTC+2, Berry wrote:
>>>
>>> Hi,
>>> I'm using the targeting ideas service (display planner) and failed to 
>>> send queries that used to work.
>>> This used to work until recently.
>>>     
>>> selector = {
>>>       'searchParameters': [{
>>>           'xsi_type': 'RelatedToQuerySearchParameter',
>>>           'queries': ['space cruise']
>>>       }],
>>>       'ideaType': 'PLACEMENT',
>>>       'requestType': 'IDEAS',
>>>       'requestedAttributeTypes': ['PLACEMENT_NAME'],
>>>       'paging': {
>>>           'startIndex': str(0),
>>>           'numberResults': str(800)
>>>       }
>>>     }
>>>
>>> ᐧ
>>>
>>>
>>> This attribute type still works:
>>>
>>>     selector = {
>>>       'searchParameters': [{
>>>           'xsi_type': 'RelatedToQuerySearchParameter',
>>>           'queries': ['space cruise']
>>>       }],
>>>       'ideaType': 'KEYWORD',
>>>       'requestType': 'IDEAS',
>>> *      'requestedAttributeTypes': ['KEYWORD_TEXT'],*
>>>       'paging': {
>>>           'startIndex': str(0),
>>>           'numberResults': str(800)
>>>       }
>>>     }
>>>
>>> Any ideas how can I get the first query to work and get the list of 
>>> placement names? 
>>> Tried checking the new api documentation but couldn't find something.
>>> old api: 
>>> https://developers.google.com/adwords/api/docs/reference/v201406/TargetingIdeaService.TargetingIdeaSelector
>>> new api: 
>>> https://developers.google.com/adwords/api/docs/reference/v201409/TargetingIdeaService.TargetingIdeaSelector
>>>
>>> Thanks
>>>
>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/357a8ca1-c6ef-4b0e-a149-b0565f97f2c3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to