Interface MigrationInventoryScanRequest

interface MigrationInventoryScanRequest {
    exportJson?: boolean;
    includeStyleContent?: boolean;
    password?: string;
    signal?: AbortSignal;
    sourceKind: MigrationInventorySourceKind;
    sourceUrl: string;
    timeoutSeconds?: number;
    username?: string;
}

Properties

exportJson?: boolean

Request /api/v1/admin/import/scan?export=json; the response is still parsed as JSON.

includeStyleContent?: boolean
password?: string
signal?: AbortSignal
sourceUrl: string
timeoutSeconds?: number
username?: string