Circle V2 API Docs
    Preparing search index...

    Type Alias UploadParams

    type UploadParams = {
        body: Blob | File | Buffer;
        bucket: string;
        contentType: string;
        key: string;
    }
    Index

    Properties

    body: Blob | File | Buffer

    The file contents to upload. Blob and File are replayable across retries.

    bucket: string

    The storage bucket name (e.g. "session-recordings").

    contentType: string

    MIME type of the file (e.g. "audio/webm").

    key: string

    Full object key within the bucket (e.g. "recordings/user-123/file.webm").