@wildix/wim-integrations-client > BulkDeleteIntegrationsCommand
BulkDeleteIntegrationsCommand class
Warning: This API is now obsolete.
This operation is deprecated. Use DeleteIntegrations instead.
Deletes multiple integrations in a single batch operation. This is a deprecated operation - use DeleteIntegrations instead.
Signature:
export declare class BulkDeleteIntegrationsCommand extends BulkDeleteIntegrationsCommand_base
Extends: BulkDeleteIntegrationsCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { IntegrationsClient, BulkDeleteIntegrationsCommand } from "@wildix/wim-integrations-client"; // ES Modules import
// const { IntegrationsClient, BulkDeleteIntegrationsCommand } = require("@wildix/wim-integrations-client"); // CommonJS import
const client = new IntegrationsClient(config);
const input = { // BulkDeleteIntegrationsInput
keys: [ // KeysList // required
{ // Keys
companyId: "STRING_VALUE", // required
integrationId: "STRING_VALUE", // required
},
],
};
const command = new BulkDeleteIntegrationsCommand(input);
const response = await client.send(command);
// {};