I'm looking here: http://code.google.com/apis/adwords/v2009/docs/callguide.html#keywordtoolservice
and trying to update my v13 code to v2009. My v13 code has worked fine for a long time in CFML and looks like this: ============ <cfset var ws = createObject("webservice", "https://adwords.google.com/ api/adwords/v13/KeywordToolService?wsdl")> <cfset addSoapRequestHeader(ws, "", "email", Variables._googleUsername)> <cfset addSoapRequestHeader(ws, "", "useragent", Variables._googleApplicationName)> <cfset addSoapRequestHeader(ws, "", "password", Variables._googlePassword)> <cfset addSoapRequestHeader(ws, "", "developerToken", Variables._googleDeveloperToken)> <cfset addSoapRequestHeader(ws, "", "applicationToken", Variables._googleApplicationToken)> <cfset resultWs = ws.getKeywordsFromSite(siteURL, Arguments.includeLinkedPages, Variables._languages, Variables._countries)> <cfset result.groups = resultWs.getGroups()> <cfset result.keywords = extractSiteKeywords( resultWs.getKeywords() )> <cfreturn result> ============ I don't understand the format of the (v2009) selector as it is shown at the link above. Can anyone offer some clues as to what my updated CFML code should look like in terms of the selector? I've tried: ============= <cfset resultWs = ws.get("RelatedToUrlSearchParameter", #ListToArray(siteURL)#, includeLinkedPages, Variables._languages, Variables._countries)> ============= and many other permutations, but always get an error stating that a "Web service operation get with parameters ..." (a listing of the params I'm sending) .... "does not exist". What do I pass to the get() method/function to get it to work? Matt McGinty -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Have you migrated to v200909 yet? The v13 sunset is on April 22, 2010. 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