module Eloqua::Export

Public Instance Methods

define_activities_export(export)
define_activity_export(export) click to toggle source

Version 2.0 of the Bulk API

# File lib/eloqua_api/bulk/export.rb, line 17
def define_activity_export(export)
  post("activities/exports", export)
end
Also aliased as: define_activities_export
define_export(export) click to toggle source
# File lib/eloqua_api/bulk/export.rb, line 3
def define_export(export)
  post("contact/export", export)
end
delete_export(export_uri, options={}) click to toggle source
# File lib/eloqua_api/bulk/export.rb, line 33
def delete_export(export_uri, options={})
  delete("%s/data" % export_uri)
end
delete_export_definition(export_uri, options={}) click to toggle source
# File lib/eloqua_api/bulk/export.rb, line 29
def delete_export_definition(export_uri, options={})
  delete(export_uri)
end
retrieve_activities_export(export_uri, options={})
retrieve_activity_export(export_uri, options={}) click to toggle source
# File lib/eloqua_api/bulk/export.rb, line 22
def retrieve_activity_export(export_uri, options={})
  options[:limit] ||= 50000

  get("%s/data" % export_uri, options)
end
Also aliased as: retrieve_activities_export
retrieve_export(export_uri, options={}) click to toggle source
# File lib/eloqua_api/bulk/export.rb, line 7
def retrieve_export(export_uri, options={})
  options[:page] ||= 1
  options[:pageSize] ||= 50000

  get("%s/data" % export_uri, options)
end