@wildix-internal/wim-integrations-client > ListWebhookIntegrationsCommand
ListWebhookIntegrationsCommand class
Fetch the whole list of webhook integrations
Signature:
export declare class ListWebhookIntegrationsCommand extends ListWebhookIntegrationsCommand_base
Extends: ListWebhookIntegrationsCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WimIntegrationsServiceClient, ListWebhookIntegrationsCommand } from "@wildix-internal/wim-integrations-client"; // ES Modules import
// const { WimIntegrationsServiceClient, ListWebhookIntegrationsCommand } = require("@wildix-internal/wim-integrations-client"); // CommonJS import
const client = new WimIntegrationsServiceClient(config);
const input = {};
const command = new ListWebhookIntegrationsCommand(input);
const response = await client.send(command);
// { // ListWebhookIntegrationsOutput
// integrations: [ // WebhookIntegrationList // required
// { // WebhookIntegration
// companyId: "STRING_VALUE", // required
// integrationId: "STRING_VALUE", // required
// type: "sqs" || "webhook", // required
// url: "STRING_VALUE", // required
// key: "STRING_VALUE", // required
// secret: "STRING_VALUE", // required
// filter: [ // FilterList // required
// "STRING_VALUE",
// ],
// },
// ],
// };