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