Use this endpoint to export lists or segments of contacts.
If you would just like to have a link to the exported list sent to your email set the notifications.email
option to true
in the POST
payload.
If you would like to download the list, take the id
that is returned and use the "Export Contacts Status" endpoint to get the urls
. Once you have the list of URLs, make a GET
request to each URL provided to download your CSV file(s).
You specify the segments and or/contact lists you wish to export by providing the relevant IDs in, respectively, the segment_ids
and list_ids
fields in the request body.
The lists will be provided in either JSON or CSV files. To specify which of these you would required, set the request body file_type
field to json
or csv
.
You can also specify a maximum file size (in MB). If the export file is larger than this, it will be split into multiple files.
Bearer <<YOUR_API_KEY_HERE>>
application/json
IDs of the contact lists you want to export.
IDs of the contact segments you want to export.
File type for export file. Choose from json
or csv
.
csv
Possible values: csv
json
The maximum size of an export file in MB. Note that when this option is specified, multiple output files may be returned from the export.
5000
The ID of the export job.
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);345const request = {6url: `/v3/marketing/contacts/exports`,7method: 'POST',89}1011client.request(request)12.then(([response, body]) => {13console.log(response.statusCode);14console.log(response.body);15})16.catch(error => {17console.error(error);18});