SERTICA Management Systems API

The ManagementSystems API from SERTICA — 21 operation(s) for managementsystems.

Operations 26

GET /ManagementSystems Gets a list of ManagementSystems #
POST /ManagementSystems Creates a new managementSystem record #
GET /ManagementSystems/{managementSystemNo} Gets a specific ManagementSystem #
PUT /ManagementSystems/{managementSystemNo} Updates an existing ManagementSystem #
DELETE /ManagementSystems/{managementSystemNo} Deletes a managementSystem record #
GET /ManagementSystems/{managementSystemNo}/history Gets history for a specific ManagementSystem #
POST /ManagementSystems/search Search for ManagementSystems Takes a SearchDefinition input, which can include… #
POST /ManagementSystems/searchCount Returns number of hits in a search for ManagementSystems Takes a… #
POST /ManagementSystems/searchIndex/{managementSystemGuid} Get index of a record in a search for ManagementSystems Takes a… #
GET /ManagementSystems/searchInfo Returns structured information about what and how you can search for #
GET /ManagementSystems/{managementSystemNo}/copy Copies an existing managementSystem to a new object #
GET /ManagementSystems/GetManagementSystemsByUnitNo/{unitNo} Gets managementSystems by unitNo #
GET /ManagementSystems/{managementSystemNo}/confidentialities Gets the Confidentialities for a specific Management System #
GET /ManagementSystems/{managementSystemNo}/changeRequestUsers Gets the ChangeRequestUsers for a specific Management System #
GET /ManagementSystems/{managementSystemNo}/units Returns the units associated with the management system #
GET /ManagementSystems/{managementSystemNo}/approvers Returns the approvers of the management system #
GET /ManagementSystems/{managementSystemNo}/deletedUnits Returns the deleted units associated with the management system #
GET /ManagementSystems/{managementSystemNo}/publishTasks Get management system publish tasks #
GET /ManagementSystems/{managementSystemNo}/acknowledgers Returns the acknowledgers of the management system #
GET /ManagementSystems/{managementSystemNo}/acknowledgers/{acknowledgerno}/sections Returns the acknowledgers of the management system #
GET /ManagementSystems/{managementSystemNo}/image Get management systems by management system no image #
POST /ManagementSystems/{managementSystemNo}/image Create management systems by management system no image #
DELETE /ManagementSystems/{managementSystemNo}/image Delete management systems by management system no image #
GET /ManagementSystems/{managementSystemNo}/print/{unitNo} Gets managementSystems by unitNo #
PUT /ManagementSystems/MakeAvailableForAI/{managementSystemNo} Marks an existing ManagementSystem as available for AI #
PUT /ManagementSystems/MakeUnavailableForAI/{managementSystemNo} Marks an existing ManagementSystem as unavailable for AI #

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/sertica-managementsystems-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

sertica-managementsystems-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Management Systems API
  description: 'Online API browser for SERTICA Web API.


    Be aware that some endpoints are restricted by license or user rights and may not be available in your environment.


    Each endpoint includes a description of the required license and user rights.'
  version: v1
servers:
- url: /api
tags:
- name: ManagementSystems
paths:
  /ManagementSystems:
    get:
      tags:
      - ManagementSystems
      summary: Gets a list of ManagementSystems
      operationId: GetManagementSystemsList
      parameters:
      - name: page
        in: query
        description: ''
        schema:
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: ''
        schema:
          type: integer
          format: int32
          default: 25
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
    post:
      tags:
      - ManagementSystems
      summary: Creates a new managementSystem record
      operationId: CreateManagementSystem
      requestBody:
        description: The ManagementSystem Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem_Update</td><td style='border-bottom:none'>Update</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/{managementSystemNo}:
    get:
      tags:
      - ManagementSystems
      summary: Gets a specific ManagementSystem
      operationId: GetManagementSystem
      parameters:
      - name: managementSystemNo
        in: path
        description: The ManagementSystemNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested managementSystem
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '400':
          description: Returns a validation result with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: If an managementSystem with the supplied ManagementSystem No cannot be found
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
    put:
      tags:
      - ManagementSystems
      summary: Updates an existing ManagementSystem
      operationId: UpdateManagementSystem
      parameters:
      - name: managementSystemNo
        in: path
        description: The ManagementSystemNo of the managementSystem to update
        required: true
        schema:
          type: string
      requestBody:
        description: The ManagementSystem DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
      responses:
        '200':
          description: Returns the updated ManagementSystem object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '400':
          description: Returns a ValidationResult with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem_Update</td><td style='border-bottom:none'>Update</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
    delete:
      tags:
      - ManagementSystems
      summary: Deletes a managementSystem record
      parameters:
      - name: managementSystemNo
        in: path
        description: The ManagementSystemNo of the ManagementSystem to delete
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem_Delete</td><td style='border-bottom:none'>Delete</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
      operationId: deleteManagementSystemsByManagementSystemNo
      x-operation-id-source: derived
  /ManagementSystems/{managementSystemNo}/history:
    get:
      tags:
      - ManagementSystems
      summary: Gets history for a specific ManagementSystem
      operationId: GetManagementSystemHistory
      parameters:
      - name: managementSystemNo
        in: path
        description: The ManagementSystemNo to get
        required: true
        schema:
          type: string
      - name: page
        in: query
        description: ''
        schema:
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: ''
        schema:
          type: integer
          format: int32
          default: 5
      responses:
        '200':
          description: Returns the requested managementSystem
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '400':
          description: Returns a validation result with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: If an managementSystem with the supplied ManagementSystem No cannot be found
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem_HistoryMode</td><td style='border-bottom:none'>HistoryMode</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/search:
    post:
      tags:
      - ManagementSystems
      summary: Search for ManagementSystems Takes a SearchDefinition input, which can include…
      operationId: SearchManagementSystems
      parameters:
      - name: page
        in: query
        description: Page
        schema:
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: Pagesize
        schema:
          type: integer
          format: int32
          default: 25
      requestBody:
        description: The search definition
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          text/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/searchCount:
    post:
      tags:
      - ManagementSystems
      summary: Returns number of hits in a search for ManagementSystems Takes a…
      operationId: SearchCountManagementSystems
      requestBody:
        description: The search definition
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          text/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/searchIndex/{managementSystemGuid}:
    post:
      tags:
      - ManagementSystems
      summary: Get index of a record in a search for ManagementSystems Takes a…
      operationId: SearchIndexManagementSystems
      parameters:
      - name: managementSystemGuid
        in: path
        description: The item to get index for
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        description: The search definition
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          text/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/searchInfo:
    get:
      tags:
      - ManagementSystems
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoManagementSystems
      responses:
        '200':
          description: Returns a list of valid search fields
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchInfo'
            application/json:
              schema:
                $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchInfo'
            text/json:
              schema:
                $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchInfo'
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
  /ManagementSystems/{managementSystemNo}/copy:
    get:
      tags:
      - ManagementSystems
      summary: Copies an existing managementSystem to a new object
      operationId: CopyManagementSystem
      parameters:
      - name: managementSystemNo
        in: path
        description: The managementSystemNo of the managementSystem to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new managementSystem object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '400':
          description: Returns a ValidationResult with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem_Update</td><td style='border-bottom:none'>Update</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/GetManagementSystemsByUnitNo/{unitNo}:
    get:
      tags:
      - ManagementSystems
      summary: Gets managementSystems by unitNo
      operationId: GetManagementSystemsByUnitNo
      parameters:
      - name: unitNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the managementSystems
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '400':
          description: Returns a ValidationResult with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/{managementSystemNo}/confidentialities:
    get:
      tags:
      - ManagementSystems
      summary: Gets the Confidentialities for a specific Management System
      operationId: GetManagementSystemConfidentialities
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested Confidentialities
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemConfidentiality'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemConfidentiality'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemConfidentiality'
        '400':
          description: Returns a validation result with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: If a Management System with the supplied No. cannot be found
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/{managementSystemNo}/changeRequestUsers:
    get:
      tags:
      - ManagementSystems
      summary: Gets the ChangeRequestUsers for a specific Management System
      operationId: GetManagementSystemChangeRequestUsers
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested ChangeRequestUsers
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemChangeRequestUser'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemChangeRequestUser'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemChangeRequestUser'
        '400':
          description: Returns a validation result with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: If a Management System with the supplied No. cannot be found
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/{managementSystemNo}/units:
    get:
      tags:
      - ManagementSystems
      summary: Returns the units associated with the management system
      operationId: GetManagementSystemRelatedUnits
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemUnit'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemUnit'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemUnit'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: Not Found
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /ManagementSystems/{managementSystemNo}/approvers:
    get:
      tags:
      - ManagementSystems
      summary: Returns the approvers of the management system
      operationId: GetManagementSystemApprovers
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemUnit'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemUnit'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemUnit'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: Not Found
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ManagementSystem</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      sec

# --- truncated at 32 KB (76 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/sertica/refs/heads/main/openapi/sertica-managementsystems-api-openapi.yml