Module: Eloqua::Export
- Included in:
- BulkClient
- Defined in:
- lib/eloqua_api/bulk/export.rb
Instance Method Summary collapse
Instance Method Details
#define_export(export) ⇒ Object
3 4 5 |
# File 'lib/eloqua_api/bulk/export.rb', line 3 def define_export(export) post("contact/export", export) end |
#retrieve_export(export_uri, options = {}) ⇒ Object
7 8 9 10 11 12 |
# File 'lib/eloqua_api/bulk/export.rb', line 7 def retrieve_export(export_uri, ={}) [:page] ||= 1 [:pageSize] ||= 50000 get("%s/data" % export_uri, ) end |