Skip to main content

@wildix/wim-cache-client > DeleteIntegrationDataCommand

DeleteIntegrationDataCommand class

Deletes integration data by id with optional filters

Signature:

export declare class DeleteIntegrationDataCommand extends DeleteIntegrationDataCommand_base 

Extends: DeleteIntegrationDataCommand_base

Example

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

import { WimCacheClient, DeleteIntegrationDataCommand } from "@wildix/wim-cache-client"; // ES Modules import
// const { WimCacheClient, DeleteIntegrationDataCommand } = require("@wildix/wim-cache-client"); // CommonJS import
const client = new WimCacheClient(config);
const input = { // DeleteIntegrationDataInput
id: "STRING_VALUE", // required
companyId: "STRING_VALUE",
type: "STRING_VALUE",
};
const command = new DeleteIntegrationDataCommand(input);
const response = await client.send(command);
// {};