v1

latestOpenAPI 3.0.12026-08-06151265417.9 KB
Reports

Export application Findings report asynchronously (Dependencies - SCA)

Generates a Dependencies Findings report for the specified application asynchronously. Supported formats: Excel, JSON, XML.

post/api/v3.0/applications/{applicationUuid}/dependencies/reports/findings

Path parameters

applicationUuidstring required

Application UUID (Administration > Applications)

Request body

namestring
format'excel' | 'json' | 'xml'

Output file format. The Findings report supports excel, json and xml.

sendEmailNotificationboolean
projectUuidsstring[]
vulnerabilitiesStatestring[]

Alert states to include. Defaults to [OPEN] when omitted.

vulnerabilityTypesstring[]

Filter by one or more vulnerability types. ANY (default) includes all types.

dateRangeinteger

Include only vulnerabilities first detected within the last N days. 0 or omitted means no date filter.

zeroDayIdentifierstring

Scope the report to a specific zero-day event, by event UUID or name.

Example request

{
  "format": "excel",
  "vulnerabilitiesState": [
    "OPEN"
  ],
  "vulnerabilityTypes": [
    "CVE",
    "GHSA"
  ],
  "dateRange": 30
}

Response

OK

supportTokenstring

Example response

{
  "supportToken": "1171c60d"
}