/analysis
Methods
| POST | 
|---|
| Processes a query for analysis Request Parameters Expand NoteIf the parameter query['id'] is not specified, the query parameter will require a valid query,  NoteThe results are inclusive of the startOffset parameter value and exclusive of the endOffset parameter value.  Type: vuln (Expand) Vuln Type{
	"type" : "vuln",
	"query" : {
		(valid query object)
	},
	"sortDir" : <string> "ASC" | "DESC" OPTIONAL
	"sortField" : <string> (alphanumeric; any valid field returned in the results entry for the corresponding tool.  [Some restrictions apply.]  Must accompany sortDir),
	"sourceType" : <string> "individual" | "cumulative" | "patched",
	"wasVuln" : <string> "onlyWas" | "excludeWas" | "includeWas" OPTIONAL (This field is used to query only WAS vulns, exclude WAS vulns, or include WAS vulns with regular VM data respectively.  The default behavior is to include WAS vulns with regular VM data.)
	"startOffset" : <number>,
	"endOffset" : <number>,
}When the sourceType is "individual", a scanID must be provided in the root of the request object: {
	"type" : "vuln",
	"query" : {
		(valid query object)
	},
	"sortDir" : <string> "ASC" | "DESC" OPTIONAL
	"sortField" : <string> (alphanumeric; any valid field returned in the results entry for the corresponding tool.  [Some restrictions apply.]  Must accompany sortDir),
	"sourceType" : "individual",
	"startOffset" : <number>,
	"endOffset" : <number>,
	"scanID" : <number>,
	"view" : "all" | "new" | "patched"
} Type: event (Expand) Event Type{
	"type" : "event",
	"query" : {
		(valid query object)
	},
	"sortDir" : <string> "ASC" | "DESC" OPTIONAL
	"sortField" : <string> (alphanumeric; any valid field returned in the results entry for the corresponding tool.  [Some restrictions apply.]  Must accompany sortDir),
	"sourceType" : <string> "lce" | "archive"
}When the sourceType is "archive", lceID and view must be provided in the root of the request object: {
	"type" : "event",
	"query" : {
		(valid query object)
	},
	"sortDir" : <string> "ASC" | "DESC" OPTIONAL
	"sortField" : <string> (alphanumeric; any valid field returned in the results entry for the corresponding tool.  [Some restrictions apply.]  Must accompany sortDir),
	"sourceType" : "archive",
	"lceID" : <number>,
	"view" : <string> (silo id)
} Type: user (Expand) User Type{
	"type" : "user",
	"query" : {
		(valid query object)
	}
} Type: scLog (Expand) 
 | 
/analysis/download
Methods
| POST | 
|---|
| Downloads an analysis of a Query Request Parameters Expand NoteThe "user" type of Analysis is not supported in download. NoteThe results are inclusive of the startOffset parameter value and exclusive of the endOffset parameter value.  Type: vuln (Expand) Vuln Type{
	"type" : "vuln",
	"query" : {
		(valid query object)
	},
	"sourceType" : <string> "individual" | "cumulative" | "patched",
	"sortDir" : <string> "ASC" | "DESC" OPTIONAL,
	"sortField" : <string> (alphanumeric; any valid field returned in the results entry for the corresponding tool.  [Some restrictions apply.]  Must accompany sortDir),
	"startOffset" : <number>,
	"endOffset" : <number>,
	"columns" : [
		{
			"name" : <string>
		}
	]
}When the sourceType is "individual", scanID and view must be provided in the root of the request object: {
	"type" : "vuln",
	"query" : {
		(valid query object)
	},
	"sourceType" : <string> "individual",
	"sortDir" : <string> "ASC" | "DESC" OPTIONAL,
	"sortField" : <string> (alphanumeric; any valid field returned in the results entry for the corresponding tool.  [Some restrictions apply.]  Must accompany sortDir),
	"startOffset" : <number>,
	"endOffset" : <number>,
	"columns" : [
		{
			"name" : <string>
		}
	],
	"scanID" : <number>,
	"view" : <string>
} Type: event (Expand) Event Type{
	"type" : "event",
	"query" : {
		(valid query object)
	},
	"sourceType" : <string> "lce" | "archive",
	"sortDir" : <string> "ASC" | "DESC" OPTIONAL,
	"sortField" : <string> (alphanumeric; any valid field returned in the results entry for the corresponding tool.  [Some restrictions apply.]  Must accompany sortDir)
}  When the sourceType is "archive", lceID and view must be provided in the root of the request object: {
	"type" : "event",
	"query" : {
		(valid query object)
	},
	"sourceType" : <string> "lce" | "archive",
	"sortDir" : <string> "ASC" | "DESC" OPTIONAL,
	"sortField" : <string> (alphanumeric; any valid field returned in the results entry for the corresponding tool.  [Some restrictions apply.]  Must accompany sortDir),
	"lceID" : <number>,
	"view" : <string> (silo id)
} Type: scLog (Expand) 
 |