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

Disassociate a branded link from a subuser



API Overview

api-overview page anchor

Email link branding (formerly "Link Whitelabel") allows all of the click-tracked links, opens, and images in your emails to be served from your domain rather than sendgrid.net. Spam filters and recipient servers look at the links within emails to determine whether the email looks trustworthy. They use the reputation of the root domain to determine whether the links can be trusted.

You can also manage link branding in the Sender Authentication section of the Twilio SendGrid App(link takes you to an external page).

For more information, please see our Link Branding documentation.


DELETE/v3/whitelabel/links/subuser

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

This endpoint allows you to take a branded link away from a subuser.

Link branding can be associated with subusers from the parent account. This functionality allows subusers to send mail using their parent's link branding. To associate link branding, the parent account must first create a branded link and validate it. The parent may then associate that branded link with a subuser via the API or the Subuser Management page of the Twilio SendGrid App(link takes you to an external page).

Your request will receive a response with a 204 status code if the disassociation was successful.


Authentication

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

The username of the subuser account that you want to disassociate a branded link from.

204
Schema
Property nameTypeRequiredDescriptionChild properties

No properties defined

disassociate-a-branded-link-from-a-subuser page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
curl

_21
const client = require('@sendgrid/client');
_21
client.setApiKey(process.env.SENDGRID_API_KEY);
_21
_21
const queryParams = {
_21
"username": "ZGkrHSypTsudrGkmdpJJ"
_21
};
_21
_21
const request = {
_21
url: `/v3/whitelabel/links/subuser`,
_21
method: 'DELETE',
_21
qs: queryParams
_21
}
_21
_21
client.request(request)
_21
.then(([response, body]) => {
_21
console.log(response.statusCode);
_21
console.log(response.body);
_21
})
_21
.catch(error => {
_21
console.error(error);
_21
});


Rate this page: