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.
The Certificates API allows you to create, modify, and delete SSO certificates. A SAML certificate allows your IdP and Twilio SendGrid to verify requests are coming from one another using the public_certificate
and integration_id
parameters.
For more information about managing SSO Certificates, see the Twilio SendGrid SSO documentation.
This endpoint allows you to retrieve all your IdP configurations by configuration ID.
The integration_id
expected by this endpoint is the id
returned in the response by the "Get All SSO Integrations" endpoint.
Bearer <<YOUR_API_KEY_HERE>>
An ID that matches a certificate to a specific IdP integration.
Array of:
This certificate is used by Twilio SendGrid to verify that SAML requests are coming from Okta. This is called the X509 certificate in the Twilio SendGrid UI.
A unique ID assigned to the certificate by SendGrid.
A unix timestamp (e.g., 1603915954) that indicates the time before which the certificate is not valid.
A unix timestamp (e.g., 1603915954) that indicates the time after which the certificate is no longer valid.
An ID that matches a certificate to a specific IdP integration.
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const integration_id = "ZGkrHSypTsudrGkmdpJJ";56const request = {7url: `/v3/sso/integrations/${integration_id}/certificates`,8method: 'GET',910}1112client.request(request)13.then(([response, body]) => {14console.log(response.statusCode);15console.log(response.body);16})17.catch(error => {18console.error(error);19});