Skip to main content

@wildix/wms-api-client > CallControlUnholdCommand

CallControlUnholdCommand class

Signature:

export declare class CallControlUnholdCommand extends CallControlUnholdCommand_base 

Extends: CallControlUnholdCommand_base

Example

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

import { WmsApiClient, CallControlUnholdCommand } from "@wildix/wms-api-client"; // ES Modules import
// const { WmsApiClient, CallControlUnholdCommand } = require("@wildix/wms-api-client"); // CommonJS import
const client = new WmsApiClient(config);
const input = { // CallControlUnholdInput
user: "STRING_VALUE",
sipCallId: "STRING_VALUE", // required
};
const command = new CallControlUnholdCommand(input);
const response = await client.send(command);
// { // CallControlUnholdOutput
// message: "STRING_VALUE",
// };