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 creates an Integration for email event forwarding. Each Integration has a maximum number of allowed Integration instances per user. For example, users can create up to 10 Segment Integrations.
Bearer <<YOUR_API_KEY_HERE>>
application/json
The third-party application you would like to forward your events to.
Segment
The configurable filters for SendGrid to destination email event forwarding.
The properties of an Integration required to send events to a specific third-party application.
The nickname for the Integration.
Untitled Integration
Successful Operation
The unique ID of an Integration.
Your Twilio SendGrid account ID.
The configurable filters for SendGrid to destination email event forwarding.
The properties of an Integration required to send events to a specific third-party application.
The nickname for the Integration.
Untitled Integration
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 data = {5"destination": "Segment",6"filters": {7"email_events": [8"drop"9]10},11"properties": {12"write_key": "1234-abc",13"destination_region": "EU"14},15"label": "My New Segment Integration!"16};1718const request = {19url: `/v3/marketing/integrations`,20method: 'POST',21body: data22}2324client.request(request)25.then(([response, body]) => {26console.log(response.statusCode);27console.log(response.body);28})29.catch(error => {30console.error(error);31});