Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Add recipients



API Overview

api-overview page anchor
(warning)

Legacy Marketing Campaigns

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

(information)

Info

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.


POST/v3/contactdb/recipients

Base url: https://api.sendgrid.com

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.


Authentication

authentication page anchor
Property nameTypeRequiredDescription
Authorizationstringrequired
Default: Bearer <<YOUR_API_KEY_HERE>>

on-behalf-ofstringOptional

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.

SchemaExample

Array of:

Property nameTypeRequiredDescriptionChild properties
emailstring<email>required

The email address of the recipient.


first_namestringOptional

The first name of the recipient.


last_namestringOptional

The last name of the recipient.


ageintegerOptional
201400401
SchemaExample
Property nameTypeRequiredDescriptionChild properties
error_countnumber

The number of errors found while adding recipients.

Default: 0

error_indicesarray[number]

The indices of the recipient(s) sent that caused the error.

Default: []

new_countnumber

The count of new recipients added to the contactdb.

Default: 0

persisted_recipientsarray[string]

The recipient IDs of the recipients that already existed from this request.

Default: []

updated_countnumber

The recipients who were updated from this request.

Default: 0

errorsarray[object]

Add recipients

add-recipients page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
curl

_32
const client = require('@sendgrid/client');
_32
client.setApiKey(process.env.SENDGRID_API_KEY);
_32
_32
const data = [
_32
{
_32
"email": "example@example.com",
_32
"first_name": "",
_32
"last_name": "User",
_32
"age": 25
_32
},
_32
{
_32
"email": "example2@example.com",
_32
"first_name": "Example",
_32
"last_name": "User",
_32
"age": 25
_32
}
_32
];
_32
_32
const request = {
_32
url: `/v3/contactdb/recipients`,
_32
method: 'POST',
_32
body: data
_32
}
_32
_32
client.request(request)
_32
.then(([response, body]) => {
_32
console.log(response.statusCode);
_32
console.log(response.body);
_32
})
_32
.catch(error => {
_32
console.error(error);
_32
});


Rate this page: