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