Get an IntegrationConnection

Get an IntegrationConnection by ID.

šŸ‘

Permissions Required

Only Connections for which you have View permissions will be included on the response.

Method Signature

getConnection(id: string): Promise<IntegrationConnection>;
getConnection(id: string, callback: (err?: Error, integrationConnection: IntegrationConnection) => any): void;

Parameters

ParameterTypeDescription
idstringThe id of the IntegrationConnection to get
returnsIntegrationConnectionThe requested IntegrationConnection

Example

/*
 * This example demonstrates getting an IntegrationConnection by ID
 */
const { CatalyticClient } = require('@catalytic/sdk');

const catalytic = new CatalyticClient();

const connection = await catalytic.integrations.get('INTEGRATION_CONNECTION_ID');
console.log(connection.name);