You are viewing the Legacy Marketing Campaigns API reference. For guidance migrating to the current version of Marketing Campaigns, see Migrating from Legacy Marketing Campaigns
For the most up-to-date information on the Contacts API, please visit the new Marketing Campaigns Contacts API.
The Contacts Recipients API allows you to manage your recipients. You can add, retrieve, update, and delete recipients, as well as get a count of all recipients and all billable recipients.
This endpoint allows you to add a Marketing Campaigns recipient.
You can add custom field data as a parameter on this endpoint. We have provided an example using some of the default custom fields SendGrid provides.
The rate limit is three requests every 2 seconds. You can upload 1000 contacts per request. So the maximum upload rate is 1500 recipients per second.
Bearer <<YOUR_API_KEY_HERE>>
The on-behalf-of
header allows you to make API calls from a parent account on behalf of the parent's Subusers or customer accounts. You will use the parent account's API key when using this header. When making a call on behalf of a customer account, the property value should be "account-id" followed by the customer account's ID (e.g., on-behalf-of: account-id <account-id>
). When making a call on behalf of a Subuser, the property value should be the Subuser's username (e.g., on-behalf-of: <subuser-username>
). See On Behalf Of for more information.
application/json
Array of:
The email address of the recipient.
The first name of the recipient.
The last name of the recipient.
The number of errors found while adding recipients.
0
The indices of the recipient(s) sent that caused the error.
[]
The count of new recipients added to the contactdb.
0
The recipient IDs of the recipients that already existed from this request.
[]
The recipients who were updated from this request.
0
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const data = [5{6"email": "example@example.com",7"first_name": "",8"last_name": "User",9"age": 2510},11{12"email": "example2@example.com",13"first_name": "Example",14"last_name": "User",15"age": 2516}17];1819const request = {20url: `/v3/contactdb/recipients`,21method: 'POST',22body: data23}2425client.request(request)26.then(([response, body]) => {27console.log(response.statusCode);28console.log(response.body);29})30.catch(error => {31console.error(error);32});