Hi, The R Package is not officially supported in the AdWords API. You can see here <https://developers.google.com/adwords/api/docs/clientlibraries> for the list of supported client libraries that you can use.
I am not sure how the R package accesses the AdWords API services, but you can refer to the attached file for a sample SOAP request for the TargetingIdeaService <https://developers.google.com/adwords/api/docs/reference/v201802/TargetingIdeaService> so you can emulate on your end using your current client library. 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. 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/9b8c1447-008d-4010-811c-6951ae310905%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Header> <ns1:RequestHeader xmlns:ns1="https://adwords.google.com/api/adwords/o/v201802" soapenv:mustUnderstand="0"> <ns2:clientCustomerId xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201802">XXX-XXX-XXXX</ns2:clientCustomerId> <ns3:developerToken xmlns:ns3="https://adwords.google.com/api/adwords/cm/v201802">REDACTED</ns3:developerToken> <ns4:userAgent xmlns:ns4="https://adwords.google.com/api/adwords/cm/v201802">unknown (AwApi-Java, AdWords-Axis/3.12.0, Common-Java/3.12.0, Axis/1.4, Java/1.8.0_112-google-v7, jars)</ns4:userAgent> <ns5:validateOnly xmlns:ns5="https://adwords.google.com/api/adwords/cm/v201802">false</ns5:validateOnly> <ns6:partialFailure xmlns:ns6="https://adwords.google.com/api/adwords/cm/v201802">false</ns6:partialFailure> </ns1:RequestHeader> </soapenv:Header> <soapenv:Body> <get xmlns="https://adwords.google.com/api/adwords/o/v201802"> <selector> <searchParameters xmlns:ns7="https://adwords.google.com/api/adwords/o/v201802" xsi:type="ns7:RelatedToQuerySearchParameter"> <ns7:queries>bakery</ns7:queries> </searchParameters> <searchParameters xmlns:ns8="https://adwords.google.com/api/adwords/o/v201802" xsi:type="ns8:LanguageSearchParameter"> <ns8:languages> <ns9:id xmlns:ns9="https://adwords.google.com/api/adwords/cm/v201802">1000</ns9:id> </ns8:languages> </searchParameters> <searchParameters xmlns:ns10="https://adwords.google.com/api/adwords/o/v201802" xsi:type="ns10:NetworkSearchParameter"> <ns10:networkSetting> <ns11:targetGoogleSearch xmlns:ns11="https://adwords.google.com/api/adwords/cm/v201802">true</ns11:targetGoogleSearch> <ns12:targetSearchNetwork xmlns:ns12="https://adwords.google.com/api/adwords/cm/v201802">false</ns12:targetSearchNetwork> <ns13:targetContentNetwork xmlns:ns13="https://adwords.google.com/api/adwords/cm/v201802">false</ns13:targetContentNetwork> <ns14:targetPartnerSearchNetwork xmlns:ns14="https://adwords.google.com/api/adwords/cm/v201802">false</ns14:targetPartnerSearchNetwork> </ns10:networkSetting> </searchParameters> <ideaType>KEYWORD</ideaType> <requestType>IDEAS</requestType> <requestedAttributeTypes>KEYWORD_TEXT</requestedAttributeTypes> <requestedAttributeTypes>SEARCH_VOLUME</requestedAttributeTypes> <requestedAttributeTypes>AVERAGE_CPC</requestedAttributeTypes> <requestedAttributeTypes>COMPETITION</requestedAttributeTypes> <requestedAttributeTypes>CATEGORY_PRODUCTS_AND_SERVICES</requestedAttributeTypes> <paging> <ns15:startIndex xmlns:ns15="https://adwords.google.com/api/adwords/cm/v201802">0</ns15:startIndex> <ns16:numberResults xmlns:ns16="https://adwords.google.com/api/adwords/cm/v201802">1</ns16:numberResults> </paging> </selector> </get> </soapenv:Body> </soapenv:Envelope>
