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 deletes Integrations.
Bearer <<YOUR_API_KEY_HERE>>
Comma-delimited Integration IDs for the Integrations to delete.
Successful Operation
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const queryParams = {5"ids": [6"ZGkrHSypTsudrGkmdpJJ"7]8};910const request = {11url: `/v3/marketing/integrations`,12method: 'DELETE',13qs: queryParams14}1516client.request(request)17.then(([response, body]) => {18console.log(response.statusCode);19console.log(response.body);20})21.catch(error => {22console.error(error);23});