Skip to main content

@wildix-internal/wim-integrations-client > GetCompanyIntegrationListCommand

GetCompanyIntegrationListCommand class

Signature:

export declare class GetCompanyIntegrationListCommand extends GetCompanyIntegrationListCommand_base 

Extends: GetCompanyIntegrationListCommand_base

Example

Use a bare-bones client and the command you need to make an API call.

import { WimIntegrationsServiceClient, GetCompanyIntegrationListCommand } from "@wildix-internal/wim-integrations-client"; // ES Modules import
// const { WimIntegrationsServiceClient, GetCompanyIntegrationListCommand } = require("@wildix-internal/wim-integrations-client"); // CommonJS import
const client = new WimIntegrationsServiceClient(config);
const input = {};
const command = new GetCompanyIntegrationListCommand(input);
const response = await client.send(command);
// { // GetCompanyIntegrationListOutput
// items: [ // CompanyIntegrationList // required
// { // CompanyIntegrations
// companyId: "STRING_VALUE", // required
// briefIntegrationList: [ // BriefIntegrationList // required
// { // BriefIntegration
// integrationId: "STRING_VALUE", // required
// service: "salesforce" || "hubspot" || "google_calendar" || "microsoft_calendar" || "salesforce_community" || "bamboo_hr" || "microsoft_presence" || "iframe_integration" || "webhook" || "hubspot_backend" || "salesforce_backend" || "salesforce_telephony" || "gong", // required
// },
// ],
// },
// ],
// };