Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 872 Bytes

RequestContactExport.md

File metadata and controls

22 lines (16 loc) · 872 Bytes

Brevo::RequestContactExport

Properties

Name Type Description Notes
export_attributes Array<String> List of all the attributes that you want to export. These attributes must be present in your contact database. For example: ['fname', 'lname', 'email'] [optional]
custom_contact_filter RequestContactExportCustomContactFilter
notify_url String Webhook that will be called once the export process is finished. For reference, https://help.brevo.com/hc/en-us/articles/360007666479 [optional]

Example

require 'brevo'

instance = Brevo::RequestContactExport.new(
  export_attributes: null,
  custom_contact_filter: null,
  notify_url: http://requestb.in/173lyyx1
)