This method can be used for the following functionality: Get details for all vulnerabilities for a group that you are a member of. This method can be used with optional filter.
Parameters
The following URL, Headers and Parameters are required for requests to this API endpoint. Where a parameter is optional, it will be indicated. Otherwise treat all parameters as mandatory.
Headers
GET /api/ss/groups/:id/vulnerabilities HTTP/1.1
Host: demo.attackforge.com
X-SSAPI-KEY: APIKey
Content-Type: application/json
Connection: close
Query
id (string)
Identifier for the group.
Example:
GET /api/ss/groups/5e6880f33e6d520a26fef4b0/vulnerabilities HTTP/1.1
startDate (string) (optional)
Start date to query vulnerabilities from, based on creation date. Must be UTC string e.g. 2021-06-03T23:15:33.008Z.
Example:
GET /api/ss/groups/:id/vulnerabilities?startDate=2021-06-03T00:00:00.000Z HTTP/1.1
endDate (string) (optional)
End date to query vulnerabilities to, based on creation date. Must be UTC string e.g. 2021-06-03T23:15:33.008Z.
Example:
GET /api/ss/groups/:id/vulnerabilities?endDate=2021-06-03T00:00:00.000Z HTTP/1.1
priority (string) (optional)
Priority for vulnerabilities returned. Must be one of the following: Critical, High, Medium, Low, Info
Example:
GET /api/ss/groups/:id/vulnerabilities?priority=Critical HTTP/1.1
skip (integer) (optional)
Number of records to skip. Default is 0 (do not skip any records).
Example:
GET /api/ss/groups/:id/vulnerabilities?skip=10 HTTP/1.1
limit (integer) (optional)
Number of records to limit to. Default limit is 500. Max limit is 500.
Example:
GET /api/ss/groups/:id/vulnerabilities?limit=100 HTTP/1.1
altCustomFields (boolean) (optional)
Returns custom fields and custom tags in alternative format.
GET /api/ss/groups/:id/vulnerabilities?pendingVulnerabilities=true HTTP/1.1
Example
The following example is a cURL request to get all Critical vulnerabilities between 1st January 2020 to 31st December 2020 for projects which belong to the group.
Request
Include API Token instead of stars in 'X-SSAPI-KEY: ***************************************' parameter.