I am using Ruby to talk to the API. Can someone verify if I am specifying the keyValuePairs correctly. I am getting empty result set.
require 'nokogiri'
require 'savon'
client = Savon.client(wsdl: "htt p://stats1.XXXXX.com/Services/query.asmx?WSDL")
response = client.call(:execute_query, message: {authUserName: "XXXX",
authPassword: "XXXXX",
authorizationCode: "XXXXXXX",
queryName: "/DataMining/TopFilesByIP",
keyValuePairs: ["SiteID=1234", "DateStart=2016-09-01","DateStop=2016-09-06"]})
p response