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§

Source§

readonly additionalFields?: {
    customAgent?: string;
    overrideSafety?: string;
    referer?: string;
    tags?: string;
    visibility?: "public" | "private" | "unlisted";
}

Default: {}

Source§

readonly filters?: { query?: string }

Default: {}

Source§

readonly limit?: number

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

Source§

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

Default: "perform"

Source§

readonly resource?: "scan"

Default: "scan"

Source§

readonly returnAll?: boolean

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

Source§

readonly scanId?: string

ID of the scan to retrieve

Source§

readonly url?: string

URL to scan