@wildix-internal/wim-integrations-client > DeleteIntegrationsCommand
DeleteIntegrationsCommand class
Signature:
export declare class DeleteIntegrationsCommand extends DeleteIntegrationsCommand_base
Extends: DeleteIntegrationsCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WimIntegrationsServiceClient, DeleteIntegrationsCommand } from "@wildix-internal/wim-integrations-client"; // ES Modules import
// const { WimIntegrationsServiceClient, DeleteIntegrationsCommand } = require("@wildix-internal/wim-integrations-client"); // CommonJS import
const client = new WimIntegrationsServiceClient(config);
const input = { // DeleteIntegrationsInput
integrationIds: [ // IntegrationIdList
"STRING_VALUE",
],
companyIds: [ // CompanyIdList
"STRING_VALUE",
],
};
const command = new DeleteIntegrationsCommand(input);
const response = await client.send(command);
// {};