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 additional Fields?: { ... }
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 return All?: boolean
Whether to return all results or only up to a given limit
readonly scan Id?: string
ID of the scan to retrieve
readonly url?: string
URL to scan
Default: {}