@wildix/wda-insights-client > GetConferenceRecordingPresignedDownloadUrlCommand
GetConferenceRecordingPresignedDownloadUrlCommand class
Retrieves a presigned URL for downloading a specific recording.
Signature:
export declare class GetConferenceRecordingPresignedDownloadUrlCommand extends GetConferenceRecordingPresignedDownloadUrlCommand_base
Extends: GetConferenceRecordingPresignedDownloadUrlCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { WdaInsightsClient, GetConferenceRecordingPresignedDownloadUrlCommand } from "@wildix/wda-insights-client"; // ES Modules import
// const { WdaInsightsClient, GetConferenceRecordingPresignedDownloadUrlCommand } = require("@wildix/wda-insights-client"); // CommonJS import
const client = new WdaInsightsClient(config);
const input = { // GetConferenceRecordingPresignedDownloadUrlInput
fileId: "STRING_VALUE", // required
category: "channels" || "recordings" || "wizyconfRecordings", // required
download: 0 || 1,
company: "STRING_VALUE",
};
const command = new GetConferenceRecordingPresignedDownloadUrlCommand(input);
const response = await client.send(command);
// { // GetConferenceRecordingPresignedDownloadUrlOutput
// presignedDownloadUrl: "STRING_VALUE", // required
// };