Interface UrlScanIoNodeParameters

Source
interface UrlScanIoNodeParameters {
    additionalFields?: {
        customAgent?: string;
        overrideSafety?: string;
        referer?: string;
        tags?: string;
        visibility?: "public" | "private" | "unlisted";
    };
    filters?: { query?: string };
    limit?: number;
    operation?: "get" | "getAll" | "perform";
    resource?: "scan";
    returnAll?: boolean;
    scanId?: string;
    url?: string;
}

Properties§

§readonly additionalFields?: { ... }

Default: {}

§readonly filters?: { ... }

Default: {}

§readonly limit?: number

Max number of results to return Default: 50 Type options: {"minValue":1}

§readonly operation?: "get" | "getAll" | "perform"

Default: "perform"

§readonly resource?: "scan"

Default: "scan"

§readonly returnAll?: boolean

Whether to return all results or only up to a given limit

§readonly scanId?: string

ID of the scan to retrieve

§readonly url?: string

URL to scan