@qtsurfer/api-client
    Preparing search index...

    Type Alias DatasetImportCreated

    The response to POST /datasets/imports — the dataset now exists, and its fetch has started.

    type DatasetImportCreated = {
        datasetId: string;
        importId: string;
        jobId: string;
        status: "fetching";
    }
    Index
    datasetId: string

    Opaque id of the newly created dataset — same id space as POST /datasets.

    importId: string

    Identifies this import. Pass to GET /datasets/{datasetId}/imports/{importId} to poll it — there is no separate "finalize" step the way an upload has.

    jobId: string

    The fetch/ingest job id.

    status: "fetching"

    Always fetching in this response — the fetch has only just started.