Skip to main content

@wildix/wms-api-client > DeletePbxAclGroupCommand

DeletePbxAclGroupCommand class

Signature:

export declare class DeletePbxAclGroupCommand extends DeletePbxAclGroupCommand_base 

Extends: DeletePbxAclGroupCommand_base

Example

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

import { WmsApiClient, DeletePbxAclGroupCommand } from "@wildix/wms-api-client"; // ES Modules import
// const { WmsApiClient, DeletePbxAclGroupCommand } = require("@wildix/wms-api-client"); // CommonJS import
const client = new WmsApiClient(config);
const input = { // DeletePbxAclGroupInput
id: Number("int"), // required
};
const command = new DeletePbxAclGroupCommand(input);
const response = await client.send(command);
// { // DeletePbxAclGroupOutput
// type: "result" || "error", // required
// result: "STRING_VALUE", // required
// };