@wildix/wda-insights-client > ScheduleCallPostAnalysisCommand
ScheduleCallPostAnalysisCommand class
Signature:
export declare class ScheduleCallPostAnalysisCommand extends ScheduleCallPostAnalysisCommand_base
Extends: ScheduleCallPostAnalysisCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WdaInsightsClient, ScheduleCallPostAnalysisCommand } from "@wildix/wda-insights-client"; // ES Modules import
// const { WdaInsightsClient, ScheduleCallPostAnalysisCommand } = require("@wildix/wda-insights-client"); // CommonJS import
const client = new WdaInsightsClient(config);
const input = { // ScheduleCallPostAnalysisInput
company: "STRING_VALUE", // required
callId: "STRING_VALUE", // required
flowIndex: Number("int"), // required
};
const command = new ScheduleCallPostAnalysisCommand(input);
const response = await client.send(command);
// {};