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?: numberMax 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?: booleanWhether to return all results or only up to a given limit
readonly scan Id?: stringID of the scan to retrieve
readonly url?: stringURL to scan
Default: {}