require 'fuelsdk' require_relative 'sample_helper' begin stubObj = FuelSDK::ET_Client.new auth ## Modify the date below to reduce the number of results returned from the request ## Setting this too far in the past could result in a very large response size retrieveDate = '2013-01-15T13:00:00.000' p '>>> Retrieve Filtered ClickEvents with GetMoreResults' getClickEvent = FuelSDK::ET_ClickEvent.new() getClickEvent.authStub = stubObj getClickEvent.props = ["SendID","SubscriberKey","EventDate","Client.ID","EventType","BatchID","TriggeredSendDefinitionObjectID","PartnerKey"] getClickEvent.filter = {'Property' => 'EventDate','SimpleOperator' => 'greaterThan','DateValue' => retrieveDate} getResponse = getClickEvent.get p 'Retrieve Status: ' + getResponse.status.to_s p 'Code: ' + getResponse.code.to_s p 'Message: ' + getResponse.message.to_s p 'MoreResults: ' + getResponse.more?.to_s p 'RequestID: ' + getResponse.request_id.to_s p 'Results Length: ' + getResponse.results.length.to_s # Since this could potentially return a large number of results, we do not want to print the results #p 'Results: ' + getResponse.results.to_s # raise 'Failure retrieving click events' unless getResponse.success? while getResponse.more? do p '>>> Continue Retrieve Filtered ClickEvents with GetMoreResults' getResponse = getClickEvent.continue p 'Retrieve Status: ' + getResponse.status.to_s p 'Code: ' + getResponse.code.to_s p 'Message: ' + getResponse.message.to_s p 'MoreResults: ' + getResponse.more?.to_s p 'RequestID: ' + getResponse.request_id.to_s p 'Results Length: ' + getResponse.results.length.to_s end # The following request could potentially bring back large amounts of data if run against a production account =begin p '>>> Retrieve All ClickEvents with GetMoreResults' getClickEvent = FuelSDK::ET_ClickEvent.new() getClickEvent.authStub = stubObj getClickEvent.props = ["SendID","SubscriberKey","EventDate","Client.ID","EventType","BatchID","TriggeredSendDefinitionObjectID","PartnerKey"] getResponse = getClickEvent.get p 'Retrieve Status: ' + getResponse.status.to_s p 'Code: ' + getResponse.code.to_s p 'Message: ' + getResponse.message.to_s p 'MoreResults: ' + getResponse.more?.to_s p 'RequestID: ' + getResponse.request_id.to_s p 'Results Length: ' + getResponse.results.length.to_s # Since this could potentially return a large number of results, we do not want to print the results #p 'Results: ' + getResponse.results.to_s while getResponse.more? do p '>>> Continue Retrieve All ClickEvents with GetMoreResults' getResponse = getClickEvent.continue p 'Retrieve Status: ' + getResponse.status.to_s p 'Code: ' + getResponse.code.to_s p 'Message: ' + getResponse.message.to_s p 'MoreResults: ' + getResponse.more?.to_s p 'RequestID: ' + getResponse.request_id.to_s p 'Results Length: ' + getResponse.results.length.to_s end =end rescue => e p "Caught exception: #{e.message}" p e.backtrace end