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

Create a Sender Identity



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 Sender Identities API, please visit the new Marketing Campaigns Senders API.

To protect your sending reputation and to uphold legitimate sending behavior, Twilio SendGrid requires customers to verify their Sender Identities.

You can verify one or more Sender Identities using either Domain Authentication or Single Sender Verification.


POST/v3/senders

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

This endpoint allows you to create a new sender identity.

You may create up to 100 unique sender identities.


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
Property nameTypeRequiredDescriptionChild properties
nicknamestringrequired

A nickname for the sender identity. Not used for sending.


fromobjectOptional

reply_toobjectOptional

addressstringrequired

The physical address of the sender identity.


address_2stringOptional

Additional sender identity address information.


citystringrequired

The city of the sender identity.


statestringOptional

The state of the sender identity.


zipstringOptional

The zipcode of the sender identity.


countrystringrequired

The country of the sender identity.

201400
SchemaExample
Property nameTypeRequiredDescriptionChild properties
nicknamestring

A nickname for the sender identity. Not used for sending.


fromobject

reply_toobject

addressstring

The physical address of the sender identity.


address_2string

Additional sender identity address information.


citystring

The city of the sender identity.


statestring

The state of the sender identity.


zipstring

The zipcode of the sender identity.


countrystring

The country of the sender identity.


idinteger

The unique identifier of the sender identity.


verifiedboolean

If the sender identity is verified or not. Only verified sender identities can be used to send email.


updated_atinteger

The time the sender identity was last updated.


created_atinteger

The time the sender identity was created.


lockedboolean

True when the sender id is associated to a campaign in the Draft, Scheduled, or In Progress status. You cannot update or delete a locked sender identity.

Create a Sender Identity

create-a-sender-identity page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
curl

_35
const client = require('@sendgrid/client');
_35
client.setApiKey(process.env.SENDGRID_API_KEY);
_35
_35
const data = {
_35
"nickname": "My Sender ID",
_35
"from": {
_35
"email": "from@example.com",
_35
"name": "Example INC"
_35
},
_35
"reply_to": {
_35
"email": "replyto@example.com",
_35
"name": "Example INC"
_35
},
_35
"address": "123 Elm St.",
_35
"address_2": "Apt. 456",
_35
"city": "Denver",
_35
"state": "Colorado",
_35
"zip": "80202",
_35
"country": "United States"
_35
};
_35
_35
const request = {
_35
url: `/v3/senders`,
_35
method: 'POST',
_35
body: data
_35
}
_35
_35
client.request(request)
_35
.then(([response, body]) => {
_35
console.log(response.statusCode);
_35
console.log(response.body);
_35
})
_35
.catch(error => {
_35
console.error(error);
_35
});


Rate this page: