Sonatype Security Vulnerability Overrides API

Use this REST API to retrieve security vulnerabilities that have been overridden.

Operations 1

GET /api/v2/securityOverrides #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sonatype-security-vulnerability-overrides-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sonatype-security-vulnerability-overrides-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sonatype Lifecycle Public REST Advanced Search Security Vulnerability Overrides API
  version: 1.201.0-02
  description: Use the Advanced Search REST API to perform searches on Lifecycle application scan reports.
security:
- BasicAuth: []
  BearerAuth: []
tags:
- description: Use this REST API to retrieve security vulnerabilities that have been overridden.
  name: Security Vulnerability Overrides
paths:
  /api/v2/securityOverrides:
    get:
      description: 'Use this method to retrieve security vulnerabilities that have been overridden.


        Permissions required: View IQ Elements'
      operationId: getSecurityVulnerabilityOverrides
      parameters:
      - description: Enter the CVE ID or Sonatype Vulnerability Identifier.
        in: query
        name: refId
        schema:
          type: string
      - description: Enter the component packageUrl e.g. `pkg:format/Group/ArtifactCoord@VersionCoord`
        in: query
        name: componentPurl
        schema:
          type: string
      - description: Enter the ownerId (e.g. applicationId) containing the vulnerability.
        in: query
        name: ownerId
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSecurityVulnerabilityOverrideResponseDTOV2'
          description: The response contains security overrides and affected components.
      tags:
      - Security Vulnerability Overrides
components:
  schemas:
    ApiSecurityVulnerabilityOverrideDTOV2:
      properties:
        comment:
          type: string
        currentlyAffectedComponents:
          items:
            $ref: '#/components/schemas/ApiComponentDTOV2'
          type: array
        hash:
          type: string
        owner:
          $ref: '#/components/schemas/ApiOwnerDTO'
        referenceId:
          type: string
        securityOverrideId:
          type: string
        status:
          type: string
      type: object
    ApiComponentIdentifierDTOV2:
      properties:
        coordinates:
          additionalProperties:
            type: string
          type: object
        format:
          type: string
      type: object
    ApiOwnerDTO:
      properties:
        ownerId:
          type: string
        ownerName:
          type: string
        ownerPublicId:
          type: string
        ownerType:
          type: string
      type: object
    ApiComponentDTOV2:
      properties:
        componentIdentifier:
          $ref: '#/components/schemas/ApiComponentIdentifierDTOV2'
        displayName:
          type: string
        hash:
          type:
          - string
          - 'null'
        originalPurl:
          type: string
        packageUrl:
          type: string
        proprietary:
          type: boolean
        sha256:
          type: string
        thirdParty:
          type: boolean
      type: object
    ApiSecurityVulnerabilityOverrideResponseDTOV2:
      properties:
        securityOverrides:
          items:
            $ref: '#/components/schemas/ApiSecurityVulnerabilityOverrideDTOV2'
          type: array
      type: object
  securitySchemes:
    BasicAuth:
      scheme: basic
      type: http
    BearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http