Export Contacts
POST/v3/marketing/contacts/exports
Base url: https://api.sendgrid.com (The Twilio SendGrid v3 API)
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/jsonOptional
IDs of the contact lists you want to export.
Optional
IDs of the contact segments you want to export.
Optional
Optional
File type for export file. Choose from json or csv.
csvPossible values: csvjsonOptional
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.
5000Optional
Optional
The ID of the export job.
1const client = require("@sendgrid/client");2client.setApiKey(process.env.SENDGRID_API_KEY);34const request = {5url: `/v3/marketing/contacts/exports`,6method: "POST",7};89client10.request(request)11.then(([response, body]) => {12console.log(response.statusCode);13console.log(response.body);14})15.catch((error) => {16console.error(error);17});