Sonatype CPE Matching Configuration API

Use the CPE Matching Configuration REST API to add/set/remove cpe matching configuration to organizations and applications

Operations 2

GET /api/v2/{ownerType}/{internalOwnerId}/configuration/publicSource/cpe #
PUT /api/v2/{ownerType}/{internalOwnerId}/configuration/publicSource/cpe #

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-cpe-matching-configuration-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-cpe-matching-configuration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sonatype Lifecycle Public REST Advanced Search CPE Matching Configuration 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 the CPE Matching Configuration REST API to add/set/remove cpe matching configuration to organizations and applications
  name: CPE Matching Configuration
paths:
  /api/v2/{ownerType}/{internalOwnerId}/configuration/publicSource/cpe:
    get:
      description: 'This method allows to retrieve the applicable cpe matching configuration of a given organization or application.<p>Permissions Required: View IQ Elements'
      operationId: getCpeMatchingConfiguration
      parameters:
      - in: path
        name: ownerType
        required: true
        schema:
          enum:
          - application
          - organization
          pattern: application|organization
          type: string
      - in: path
        name: internalOwnerId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Applicable cpe matching configuration for given ownerId
      tags:
      - CPE Matching Configuration
    put:
      description: 'Use this method to apply a given cpe matching configuration to an organization or application.<p>Permissions Required: Edit IQ Elements'
      operationId: updateCpeMatchingConfiguration
      parameters:
      - in: path
        name: ownerType
        required: true
        schema:
          enum:
          - application
          - organization
          pattern: application|organization
          type: string
      - in: path
        name: internalOwnerId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CpeMatchingConfigurationRequest'
      responses:
        '200':
          content:
            application/json: {}
          description: An object containing the cpe configuration applied to the given ownerId
      tags:
      - CPE Matching Configuration
components:
  schemas:
    CpeMatchingConfigurationRequest:
      properties:
        allowOverride:
          type: boolean
        enabled:
          type: boolean
      type: object
  securitySchemes:
    BasicAuth:
      scheme: basic
      type: http
    BearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http