Sonatype Nexus System: Nodes API

The System: Nodes API from Sonatype Nexus — 2 operation(s) for system: nodes.

OpenAPI Specification

sonatype-nexus-system-nodes-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  contact:
    name: Sonatype Community Maintainers
    url: https://github.com/sonatype-nexus-community
  description: This documents the available APIs into [Sonatype Nexus Repository Manager](https://www.sonatype.com/products/sonatype-nexus-repository) as of version 3.91.0-07.
  license:
    name: Apache-2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  title: 'Sonatype Nexus Repository Manager assets System: Nodes API'
  version: 3.91.0-07
servers:
- url: /service/rest/
security:
- BasicAuth: []
tags:
- name: 'System: Nodes'
paths:
  /beta/system/information:
    get:
      operationId: getSystemInformation
      responses:
        '200':
          content: {}
          description: System information for all running nodes grouped by nodeID
        '403':
          content: {}
          description: Insufficient permissions to request this data
      summary: Get information about all nodes
      tags:
      - 'System: Nodes'
  /v1/system/node:
    delete:
      operationId: clear
      responses:
        '403':
          content: {}
          description: Insufficient permissions to update settings
      summary: Reset the ID for this node. Takes effect after restart and should only be used when cloning an instance
      tags:
      - 'System: Nodes'
    get:
      operationId: getNodeId
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NodeInformation'
          description: successful operation
        '403':
          content: {}
          description: Insufficient permissions to update settings
      summary: Get information about this node
      tags:
      - 'System: Nodes'
components:
  schemas:
    NodeInformation:
      properties:
        nodeId:
          type: string
      type: object
  securitySchemes:
    BasicAuth:
      scheme: basic
      type: http
x-original-swagger-version: '2.0'