v1

latestOpenAPI 3.0.12026-08-06151265417.9 KB
Applications

Import SBOM and create a new project (Dependencies - SCA)

Imports an SBOM and creates a new project as part of the process. The SBOM scan is queued for asynchronous processing. Supported formats: SPDX (JSON/XML), CycloneDX (JSON/XML).

post/api/v3.0/applications/{applicationUuid}/dependencies/projects/importSbom

Path parameters

applicationUuidstring required

Application UUID (Administration > Applications)

Response

SBOM scan successfully created and queued

supportTokenstring

Support token for tracking

Example response

{
  "supportToken": "1171c60d",
  "project": {
    "uuid": "123e4567-e89b-12d3-a456-426655440000",
    "name": "My Project",
    "path": "My Application",
    "applicationName": "My Application",
    "applicationUuid": "123e4567-e89b-12d3-a456-426655440000"
  },
  "scan": {
    "scanUuid": "45e0c7f0-2a64-4a1c-bb2b-22e1c4f02126",
    "createdAt": "2025-10-27T18:50:05Z"
  },
  "link": {
    "logs": "/api/v3.0/projects/{projectUuid}/scans/{scanUuid}/dependencies/SBOM/logs"
  }
}