@videosdk.live/server-sdk
    Preparing search index...

    Interface UploadBatchCallOptions

    interface UploadBatchCallOptions {
        batchId?: string;
        filePath: string;
        pollIntervalMs?: number;
        pollTimeoutMs?: number;
        signal?: AbortSignal;
        waitForParse?: boolean;
    }
    Index
    batchId?: string

    Replace the file on an existing batch instead of creating a new one.

    filePath: string

    Path to a .csv, .xls, or .xlsx file of recipients (max 5 MB). Required.

    pollIntervalMs?: number

    How often to poll while waiting for parsing, in milliseconds (default 2000).

    pollTimeoutMs?: number

    How long to wait for parsing before timing out, in milliseconds (default 120000).

    signal?: AbortSignal

    Abort the upload and the parse wait.

    waitForParse?: boolean

    Wait for the uploaded file to finish parsing before resolving (default true). When false, resolves as soon as parsing starts (status parsing).