I'm trying to get search volumes for selected keywords via the v201101 TargetingIdeaService. The service returns the search volumes, but the keywords I specify are not included in the response, even though I've included "<o:requestedAttributeTypes>KEYWORD</o:requestedAttributeTypes>" in the request.
Example request: <?xml version='1.0' encoding='utf-8'?> <soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/' xmlns:o='https://adwords.google.com/api/adwords/o/v201101' xmlns:mcm=' https://adwords.google.com/api/adwords/mcm/v201101' xmlns:cm=' https://adwords.google.com/api/adwords/cm/v201101' xmlns:xsi=' http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd=' http://www.w3.org/2001/XMLSchema'> <soap:Header> <o:RequestHeader> <cm:authToken>XXXXX</cm:authToken> <cm:developerToken>XXXXX</cm:developerToken> <cm:userAgent>XXXXX</cm:userAgent> </o:RequestHeader> </soap:Header> <soap:Body> <o:get> <o:selector> <o:searchParameters xsi:type='o:RelatedToKeywordSearchParameter'> <o:keywords> <cm:text>the keyword</cm:text> <cm:matchType>BROAD</cm:matchType> </o:keywords> </o:searchParameters> <o:ideaType>KEYWORD</o:ideaType> <o:requestType>STATS</o:requestType> <o:requestedAttributeTypes>TARGETED_MONTHLY_SEARCHES</o:requestedAttributeTypes> <o:requestedAttributeTypes>KEYWORD</o:requestedAttributeTypes> <o:paging> <cm:startIndex>0</cm:startIndex> <cm:numberResults>999999</cm:numberResults> </o:paging> </o:selector> </o:get> </soap:Body> </soap:Envelope> And the response: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <ResponseHeader xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201101" xmlns="https://adwords.google.com/api/adwords/o/v201101"> <ns2:requestId>de2b19c50fd81577b9d99f9c63a91e7c</ns2:requestId> <ns2:operations>1</ns2:operations> <ns2:responseTime>360</ns2:responseTime> <ns2:units>6</ns2:units> </ResponseHeader> </soap:Header> <soap:Body> <getResponse xmlns="https://adwords.google.com/api/adwords/o/v201101" xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201101"> <rval> <totalNumEntries>1</totalNumEntries> <entries> <data> <key>TARGETED_MONTHLY_SEARCHES</key> <value xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="MonthlySearchVolumeAttribute"> <Attribute.Type>MonthlySearchVolumeAttribute</Attribute.Type> <value> <year>2011</year> <month>3</month> </value> <value> <year>2011</year> <month>2</month> <count>27100</count> </value> <value> <year>2011</year> <month>1</month> <count>22200</count> </value> <value> <year> 2010</year> <month>12</month> <count>22200</count> </value> <value> <year>2010</year> <month>11</month> <count>22200</count> </value> <value> <year>2010</year> <month>10</month> <count>22200</count> </value> <value> <year>2010</year> <month>9</month> <count>18100</count> </value> <value> <year>2010</year> <month>8</month> <count>14800</count> </value> <value> <year>2010</year> <month>7</month> <count>27100</count> </value> <value> <year>2010</year> <month>6</month> <count>14800</count> </value> <value> <year>2010</year> <month>5</month> <count>22200</count> </value> <value> <year>2010</year> <month>4</month> <count>18100</count> </value> </value> </data> </entries> </rval> </getResponse> </soap:Body> </soap:Envelope> -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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