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

Create an SSO Integration


The Single Sign-On APIs allow you to manage your SAML 2.0 SSO configurations. You can also work with your SSO integrations using the SSO section of the Twilio SendGrid App(link takes you to an external page).

The Single Sign-On Settings API allows you to create, retrieve, modify, and delete SSO integrations for your Twilio SendGrid account. Each integration will correspond to a specific IdP such as Okta, Duo, or Microsoft Azure Active Directory.


Operation overview

operation-overview page anchor

POST/v3/sso/integrations

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

This endpoint allows you to create an SSO integration.


Authentication

authentication page anchor
Property nameTypeRequiredDescription
Authorizationstringrequired
Default: Bearer <<YOUR_API_KEY_HERE>>
Schema
Property nameTypeRequiredDescriptionChild properties
namestringrequired

The name of your integration. This name can be anything that makes sense for your organization (eg. Twilio SendGrid)


enabledbooleanrequired

Indicates if the integration is enabled.


signin_urlstringrequired

The IdP's SAML POST endpoint. This endpoint should receive requests and initiate an SSO login flow. This is called the "Embed Link" in the Twilio SendGrid UI.


signout_urlstringrequired

This URL is relevant only for an IdP-initiated authentication flow. If a user authenticates from their IdP, this URL will return them to their IdP when logging out.


entity_idstringrequired

An identifier provided by your IdP to identify Twilio SendGrid in the SAML interaction. This is called the "SAML Issuer ID" in the Twilio SendGrid UI.


completed_integrationbooleanOptional

Indicates if the integration is complete.

200400401403429500
SchemaExample
Property nameTypeRequiredDescriptionChild properties
namestring

The name of your integration. This name can be anything that makes sense for your organization (eg. Twilio SendGrid)


enabledboolean

Indicates if the integration is enabled.


signin_urlstring

The IdP's SAML POST endpoint. This endpoint should receive requests and initiate an SSO login flow. This is called the "Embed Link" in the Twilio SendGrid UI.


signout_urlstring

This URL is relevant only for an IdP-initiated authentication flow. If a user authenticates from their IdP, this URL will return them to their IdP when logging out.


entity_idstring

An identifier provided by your IdP to identify Twilio SendGrid in the SAML interaction. This is called the "SAML Issuer ID" in the Twilio SendGrid UI.


completed_integrationboolean

Indicates if the integration is complete.


last_updatednumber

A timestamp representing the last time the configuration was modified.


idstring

A unique ID assigned to the configuration by SendGrid.


single_signon_urlstring

The URL where your IdP should POST its SAML response. This is the Twilio SendGrid URL that is responsible for receiving and parsing a SAML assertion. This is the same URL as the Audience URL when using SendGrid.


audience_urlstring

The URL where your IdP should POST its SAML response. This is the Twilio SendGrid URL that is responsible for receiving and parsing a SAML assertion. This is the same URL as the Single Sign-On URL when using SendGrid.

Create an SSO Integration

create-an-sso-integration page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
curl

_25
const client = require('@sendgrid/client');
_25
client.setApiKey(process.env.SENDGRID_API_KEY);
_25
_25
const data = {
_25
"name": "Miss Christine Morgan",
_25
"enabled": false,
_25
"signin_url": "http://day-charles.info/",
_25
"signout_url": "http://day-charles.info/",
_25
"entity_id": "ZGkrHSypTsudrGkmdpJJ"
_25
};
_25
_25
const request = {
_25
url: `/v3/sso/integrations`,
_25
method: 'POST',
_25
body: data
_25
}
_25
_25
client.request(request)
_25
.then(([response, body]) => {
_25
console.log(response.statusCode);
_25
console.log(response.body);
_25
})
_25
.catch(error => {
_25
console.error(error);
_25
});


Rate this page: