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

Update 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.


PATCH/v3/senders/{sender_id}

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

This endpoint allows you to update a sender identity.

Updates to from.email require re-verification.

Partial updates are allowed, but fields that are marked as "required" in the POST (create) endpoint must not be nil if that field is included in the PATCH request.


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.

Property nameTypeRequiredDescription
sender_idintegerrequired

The ID of the sender identity that you want to retrieve.

SchemaExample
Property nameTypeRequiredDescriptionChild properties
nicknamestringOptional

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


fromobjectOptional

reply_toobjectOptional

addressstringOptional

The physical address of the sender identity.


address_2stringOptional

Additional sender identity address information.


citystringOptional

The city of the sender identity.


statestringOptional

The state of the sender identity.


zipstringOptional

The zipcode of the sender identity.


countrystringOptional

The country of the sender identity.

200400403404
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.

Update a Sender Identity

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

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


Rate this page: