@wildix/wms-api-client > DeletePbxColleagueCommand
DeletePbxColleagueCommand class
Signature:
export declare class DeletePbxColleagueCommand extends DeletePbxColleagueCommand_base
Extends: DeletePbxColleagueCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WmsApiClient, DeletePbxColleagueCommand } from "@wildix/wms-api-client"; // ES Modules import
// const { WmsApiClient, DeletePbxColleagueCommand } = require("@wildix/wms-api-client"); // CommonJS import
const client = new WmsApiClient(config);
const input = { // DeletePbxColleagueInput
id: Number("int"), // required
};
const command = new DeletePbxColleagueCommand(input);
const response = await client.send(command);
// { // DeletePbxColleagueOutput
// type: "result" || "error", // required
// result: "STRING_VALUE", // required
// };