@wildix/wms-api-client > CallControlBlindTransferCommand
CallControlBlindTransferCommand class
Signature:
export declare class CallControlBlindTransferCommand extends CallControlBlindTransferCommand_base
Extends: CallControlBlindTransferCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WmsApiClient, CallControlBlindTransferCommand } from "@wildix/wms-api-client"; // ES Modules import
// const { WmsApiClient, CallControlBlindTransferCommand } = require("@wildix/wms-api-client"); // CommonJS import
const client = new WmsApiClient(config);
const input = { // CallControlBlindTransferInput
user: "STRING_VALUE",
sipCallId: "STRING_VALUE", // required
destination: "STRING_VALUE", // required
};
const command = new CallControlBlindTransferCommand(input);
const response = await client.send(command);
// { // CallControlBlindTransferOutput
// message: "STRING_VALUE",
// };