Options for uploading a file.
Used with the client's uploadFile method to upload files to S3 storage.
uploadFile
const options: FileUploadOptions = { file: new File([blob], 'notes.json'), location: 'meeting-files', resourceType: 'note',};const { fileId } = await client.uploadFile(options); Copy
const options: FileUploadOptions = { file: new File([blob], 'notes.json'), location: 'meeting-files', resourceType: 'note',};const { fileId } = await client.uploadFile(options);
Optional
Optional application-specific metadata stored alongside the file
The file to upload
Storage location/folder for the file
Optional resource type identifier (e.g., 'note', 'poll', 'qa')
Options for uploading a file.
Remarks
Used with the client's
uploadFilemethod to upload files to S3 storage.Example