SERTICA Management System Documents API

The ManagementSystemDocuments API from SERTICA — 13 operation(s) for managementsystemdocuments.

Operations 16

GET /ManagementSystemDocuments Gets a list of ManagementSystemDocuments #
POST /ManagementSystemDocuments Creates a new managementSystemDocument record #
GET /ManagementSystemDocuments/{ID} Gets a specific ManagementSystemDocument #
PUT /ManagementSystemDocuments/{ID} Updates an existing ManagementSystemDocument #
DELETE /ManagementSystemDocuments/{ID} Deletes a managementSystemDocument record #
GET /ManagementSystemDocuments/{ID}/history Gets history for a specific ManagementSystemDocument #
POST /ManagementSystemDocuments/search Search for ManagementSystemDocuments Takes a SearchDefinition input, which can… #
POST /ManagementSystemDocuments/searchCount Returns number of hits in a search for ManagementSystemDocuments Takes a… #
POST /ManagementSystemDocuments/searchIndex/{managementSystemDocumentGuid} Get index of a record in a search for ManagementSystemDocuments Takes a… #
GET /ManagementSystemDocuments/searchInfo Returns structured information about what and how you can search for #
GET /ManagementSystemDocuments/{ID}/copy Copies an existing managementSystemDocument to a new object #
GET /ManagementSystemDocuments/{id}/units Gets the units from a specific ManagementSystemDocument #
GET /ManagementSystemDocuments/{id}/affectedunits Gets the units from a specific ManagementSystemDocument where the Draft… #
GET /ManagementSystemDocuments/{ID}/approvers Gets a specific ManagementSystemDocument #
GET /ManagementSystemDocuments/{id}/revisionhistory Gets the ManagementSystemDocument revision history #
GET /ManagementSystemDocuments/{id}/cancreatechangerequest Returns if a change request can be created #

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-managementsystemdocuments-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-managementsystemdocuments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Management System Documents 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: ManagementSystemDocuments
paths:
  /ManagementSystemDocuments:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Gets a list of ManagementSystemDocuments
      operationId: GetManagementSystemDocuments
      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.ManagementSystemDocument'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
        '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'>ManagementSystemDocument</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:
      - ManagementSystemDocuments
      summary: Creates a new managementSystemDocument record
      operationId: CreateManagementSystemDocument
      requestBody:
        description: The ManagementSystemDocument Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
        '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'>ManagementSystemDocument_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: []
  /ManagementSystemDocuments/{ID}:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Gets a specific ManagementSystemDocument
      operationId: GetManagementSystemDocument
      parameters:
      - name: ID
        in: path
        description: The ID to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested managementSystemDocument
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
        '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 managementSystemDocument with the supplied ManagementSystemDocument 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'>ManagementSystemDocument</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:
      - ManagementSystemDocuments
      summary: Updates an existing ManagementSystemDocument
      operationId: UpdateManagementSystemDocument
      parameters:
      - name: ID
        in: path
        description: The ID of the managementSystemDocument to update
        required: true
        schema:
          type: string
      requestBody:
        description: The ManagementSystemDocument DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
      responses:
        '200':
          description: Returns the updated ManagementSystemDocument object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
        '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'>ManagementSystemDocument_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:
      - ManagementSystemDocuments
      summary: Deletes a managementSystemDocument record
      parameters:
      - name: ID
        in: path
        description: The ID of the ManagementSystemDocument 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'>ManagementSystemDocument_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: deleteManagementSystemDocumentsByID
      x-operation-id-source: derived
  /ManagementSystemDocuments/{ID}/history:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Gets history for a specific ManagementSystemDocument
      operationId: GetManagementSystemDocumentHistory
      parameters:
      - name: ID
        in: path
        description: The ID 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 managementSystemDocument
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
        '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 managementSystemDocument with the supplied ManagementSystemDocument 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'>ManagementSystemDocument_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: []
  /ManagementSystemDocuments/search:
    post:
      tags:
      - ManagementSystemDocuments
      summary: Search for ManagementSystemDocuments Takes a SearchDefinition input, which can…
      operationId: SearchManagementSystemDocuments
      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.ManagementSystemDocument'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
        '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'>ManagementSystemDocument</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: []
  /ManagementSystemDocuments/searchCount:
    post:
      tags:
      - ManagementSystemDocuments
      summary: Returns number of hits in a search for ManagementSystemDocuments Takes a…
      operationId: SearchCountManagementSystemDocuments
      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'>ManagementSystemDocument</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: []
  /ManagementSystemDocuments/searchIndex/{managementSystemDocumentGuid}:
    post:
      tags:
      - ManagementSystemDocuments
      summary: Get index of a record in a search for ManagementSystemDocuments Takes a…
      operationId: SearchIndexManagementSystemDocuments
      parameters:
      - name: managementSystemDocumentGuid
        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'>ManagementSystemDocument</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: []
  /ManagementSystemDocuments/searchInfo:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoManagementSystemDocuments
      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
  /ManagementSystemDocuments/{ID}/copy:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Copies an existing managementSystemDocument to a new object
      operationId: CopyManagementSystemDocument
      parameters:
      - name: ID
        in: path
        description: The ID of the managementSystemDocument to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new managementSystemDocument object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDocument'
        '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'>ManagementSystemDocument_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: []
  /ManagementSystemDocuments/{id}/units:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Gets the units from a specific ManagementSystemDocument
      operationId: GetManagementSystemDocumentUnits
      parameters:
      - name: id
        in: path
        description: the ID to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested managementSystemDocument units
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
        '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 managementSystemDocument with the supplied ManagementSystemDocument 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'>ManagementSystemDocument</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: []
  /ManagementSystemDocuments/{id}/affectedunits:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Gets the units from a specific ManagementSystemDocument where the Draft…
      operationId: GetManagementSystemDocumentAffectedUnits
      parameters:
      - name: id
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
        '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'>ManagementSystemDocument</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: []
  /ManagementSystemDocuments/{ID}/approvers:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Gets a specific ManagementSystemDocument
      operationId: GetManagementSystemDocumentApprovers
      parameters:
      - name: id
        in: path
        description: the ID to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested managementSystemDocument approvers
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentUnit'
        '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 managementSystemDocument with the supplied ManagementSystemDocument 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'>ManagementSystemDocument</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: []
  /ManagementSystemDocuments/{id}/revisionhistory:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Gets the ManagementSystemDocument revision history
      operationId: GetManagementSystemDocumentRevisionHistory
      parameters:
      - name: id
        in: path
        description: the ID for the ManagementSystemDocument
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested revision history
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentRevision'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentRevision'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystemDocument.ManagementSystemDocumentRevision'
        '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 managementSystemDocument with the supplied ManagementSystemDocument 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'>ManagementSystemDocument</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: []
  /ManagementSystemDocuments/{id}/cancreatechangerequest:
    get:
      tags:
      - ManagementSystemDocuments
      summary: Returns if a change request can be created
      operationId: CanCreateChangeRequest
      parameters:
      - name: id
        in: path
        description: the ID for the ManagementSystemDocument
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the evaluation of whether a change request can be created.
          content:
            text/plain:
              schema:
                type: array
                items:
                  type: boolean
            application/json:
              schema:
                type: array
                items:
                  type: boolean
            text/json:
              schema:
                type: array
                items:
                  

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