An Integration is a connection from a SendGrid Marketing Campaign to a supported third-party application. Integrations with different external applications allow you to sync data and create a more cohesive cross-product data experience.
Currently, only Segment Integrations are supported. Segment Integrations allow you to customize and automate email event forwarding to your Segment account.
The Integrations API allows you to create, retrieve, update, and delete your Integrations.
This endpoint returns the data for a specific Integration.
Bearer <<YOUR_API_KEY_HERE>>
The ID of the Integration you would like to retrieve.
Successful operation
Optional
The unique ID of an Integration.
12345
Optional
Your Twilio SendGrid account ID.
123456
Optional
The configurable filters for SendGrid to destination email event forwarding.
Optional
The properties of an Integration required to send events to a specific third-party application.
Optional
The nickname for the Integration.
Untitled Integration
Example: My New Segment Integration!
Optional
The third-party application you would like to forward your events to.
Segment
1const client = require("@sendgrid/client");2client.setApiKey(process.env.SENDGRID_API_KEY);34const id = "id";56const request = {7url: `/v3/marketing/integrations/${id}`,8method: "GET",9};1011client12.request(request)13.then(([response, body]) => {14console.log(response.statusCode);15console.log(response.body);16})17.catch((error) => {18console.error(error);19});