Create a Sender Identity
Legacy Marketing Campaigns
This covers the obsolete Legacy Marketing Campaigns API.
Use the Sender Identities API
To learn more about the Sender Identities API, see the Marketing Campaigns Senders API.
To protect your sending reputation and to uphold legitimate sending behavior, Twilio SendGrid requires customers to verify their Sender Identities. Use either Domain Authentication or Single Sender Verification.
POST/v3/senders
Base url: https://api.sendgrid.com (The Twilio SendGrid v3 API)
This endpoint allows you to create a new sender identity.
You may create up to 100 unique sender identities.
Bearer <<YOUR_API_KEY_HERE>>Optional
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/jsonA nickname for the sender identity. Not used for sending.
Optional
Optional
The physical address of the sender identity.
Optional
Additional sender identity address information.
The city of the sender identity.
Optional
The state of the sender identity.
Optional
The zipcode of the sender identity.
The country of the sender identity.
Optional
A nickname for the sender identity. Not used for sending.
Optional
Optional
Optional
The physical address of the sender identity.
Optional
Additional sender identity address information.
Optional
The city of the sender identity.
Optional
The state of the sender identity.
Optional
The zipcode of the sender identity.
Optional
The country of the sender identity.
Optional
The unique identifier of the sender identity.
Optional
If the sender identity is verified or not. Only verified sender identities can be used to send email.
Optional
The time the sender identity was last updated.
Optional
The time the sender identity was created.
Optional
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.
1const client = require("@sendgrid/client");2client.setApiKey(process.env.SENDGRID_API_KEY);34const data = {5nickname: "My Sender ID",6from: {7email: "from@example.com",8name: "Example INC",9},10reply_to: {11email: "replyto@example.com",12name: "Example INC",13},14address: "123 Elm St.",15address_2: "Apt. 456",16city: "Denver",17state: "Colorado",18zip: "80202",19country: "United States",20};2122const request = {23url: `/v3/senders`,24method: "POST",25body: data,26};2728client29.request(request)30.then(([response, body]) => {31console.log(response.statusCode);32console.log(response.body);33})34.catch((error) => {35console.error(error);36});