SERTICA Management System Change Requests API

The ManagementSystemChangeRequests API from SERTICA — 26 operation(s) for managementsystemchangerequests.

Operations 29

GET /ManagementSystemChangeRequests Gets a list of ManagementSystemChangeRequests #
POST /ManagementSystemChangeRequests Creates a new managementSystemChangeRequest record #
GET /ManagementSystemChangeRequests/{changeRequestNo} Gets a specific ManagementSystemChangeRequest #
PUT /ManagementSystemChangeRequests/{changeRequestNo} Updates an existing ManagementSystemChangeRequest #
DELETE /ManagementSystemChangeRequests/{changeRequestNo} Deletes an managementSystemChangeRequest record #
GET /ManagementSystemChangeRequests/{changeRequestNo}/history Gets history for a specific ManagementSystemChangeRequest #
POST /ManagementSystemChangeRequests/search Search for managementSystemChangeRequests Takes a SearchDefinition input, which… #
POST /ManagementSystemChangeRequests/searchCount Returns number of hits in a search for ManagementSystemChangeRequests Takes a… #
POST /ManagementSystemChangeRequests/searchIndex/{managementSystemChangeRequestGuid} Get index of a record in a search for ManagementSystemChangeRequests Takes a… #
GET /ManagementSystemChangeRequests/searchInfo Returns structured information about what and how you can search for #
GET /ManagementSystemChangeRequests/{changeRequestNo}/copy Copies an existing managementSystemChangeRequest to a new object #
GET /ManagementSystemChangeRequests/{changeRequestNo}/responses Gets a list of ChangeRequest responses #
GET /ManagementSystemChangeRequests/{changeRequestNo}/responses/count Returns number of ManagementSystemChangeRequestResponses for ChangeRequestNo #
POST /ManagementSystemChangeRequests/{changeRequestNo}/addResponse Add response #
GET /ManagementSystemChangeRequests/{changeRequestNo}/units Returns the units for a Change Request #
GET /ManagementSystemChangeRequests/{changeRequestNo}/affectedunits Returns the affected units for a Change Request #
POST /ManagementSystemChangeRequests/{changeRequestNo}/markAsMinorChange Marks ManagementSystemChangeRequest as minor change #
POST /ManagementSystemChangeRequests/{changeRequestNo}/unmarkAsMinorChange Unmarks ManagementSystemChangeRequest as minor change #
POST /ManagementSystemChangeRequests/{changeRequestNo}/changeRequestUpdateDocument Change request update document #
GET /ManagementSystemChangeRequests/{changeRequestNo}/approvers Returns the approvers for a Change Request #
GET /ManagementSystemChangeRequests/{changeRequestNo}/currentUserCanApprove Returns if current user is allowed to approve a change request #
POST /ManagementSystemChangeRequests/{changeRequestNo}/requestApproval Request Approval for a change request #
POST /ManagementSystemChangeRequests/{changeRequestNo}/approve Approves a Change Request #
POST /ManagementSystemChangeRequests/{changeRequestNo}/reject Rejects a Change Request approval request #
POST /ManagementSystemChangeRequests/{changeRequestNo}/changetodraft Change a Change Request approval status to Draft #
POST /ManagementSystemChangeRequests/{changeRequestNo}/changetorequested Change a Change Request approval status to Requested #
POST /ManagementSystemChangeRequests/{changeRequestNo}/bypassapproval Bypass approval on a Change a Change Request #
GET /ManagementSystemChangeRequests/awaitingMyApproval Returns a list of change requests that is awaiting my approval The mapper #
GET /ManagementSystemChangeRequests/{changeRequestNo}/compare Returns a pdf of the compared documents #

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-managementsystemchangerequests-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-managementsystemchangerequests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Management System Change Requests 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: ManagementSystemChangeRequests
paths:
  /ManagementSystemChangeRequests:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Gets a list of ManagementSystemChangeRequests
      operationId: GetManagementSystemChangeRequests
      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.ManagementSystems.ManagementSystemChangeRequest'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
        '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'>ChangeRequest</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:
      - ManagementSystemChangeRequests
      summary: Creates a new managementSystemChangeRequest record
      operationId: CreateManagementSystemChangeRequest
      requestBody:
        description: The ManagementSystemChangeRequest Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
        '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'>ChangeRequest_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: []
  /ManagementSystemChangeRequests/{changeRequestNo}:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Gets a specific ManagementSystemChangeRequest
      operationId: GetManagementSystemChangeRequest
      parameters:
      - name: changeRequestNo
        in: path
        description: the changeRequestNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested managementSystemChangeRequest
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
        '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 managementSystemChangeRequest with the supplied ManagementSystemChangeRequest 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'>ChangeRequest</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:
      - ManagementSystemChangeRequests
      summary: Updates an existing ManagementSystemChangeRequest
      operationId: UpdateManagementSystemChangeRequest
      parameters:
      - name: changeRequestNo
        in: path
        description: The changeRequestNo of the managementSystemChangeRequest to update
        required: true
        schema:
          type: string
      requestBody:
        description: The ManagementSystemChangeRequest DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
      responses:
        '200':
          description: Returns the updated ManagementSystemChangeRequest object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
        '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'>ChangeRequest_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:
      - ManagementSystemChangeRequests
      summary: Deletes an managementSystemChangeRequest record
      parameters:
      - name: changeRequestNo
        in: path
        description: The changeRequestNo of the ManagementSystemChangeRequest 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'>ChangeRequest_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: deleteManagementSystemChangeRequestsByChangeRequestNo
      x-operation-id-source: derived
  /ManagementSystemChangeRequests/{changeRequestNo}/history:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Gets history for a specific ManagementSystemChangeRequest
      operationId: GetManagementSystemChangeRequestHistory
      parameters:
      - name: changeRequestNo
        in: path
        description: The changeRequestNo 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 managementSystemChangeRequest
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
        '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 managementSystemChangeRequest with the supplied ManagementSystemChangeRequest 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'>ChangeRequest_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: []
  /ManagementSystemChangeRequests/search:
    post:
      tags:
      - ManagementSystemChangeRequests
      summary: Search for managementSystemChangeRequests Takes a SearchDefinition input, which…
      operationId: SearchManagementSystemChangeRequests
      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.ManagementSystems.ManagementSystemChangeRequest'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
        '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'>ChangeRequest</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: []
  /ManagementSystemChangeRequests/searchCount:
    post:
      tags:
      - ManagementSystemChangeRequests
      summary: Returns number of hits in a search for ManagementSystemChangeRequests Takes a…
      operationId: SearchCountManagementSystemChangeRequests
      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'>ChangeRequest</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: []
  /ManagementSystemChangeRequests/searchIndex/{managementSystemChangeRequestGuid}:
    post:
      tags:
      - ManagementSystemChangeRequests
      summary: Get index of a record in a search for ManagementSystemChangeRequests Takes a…
      operationId: SearchIndexManagementSystemChangeRequests
      parameters:
      - name: managementSystemChangeRequestGuid
        in: path
        description: The managementSystemChangeRequest 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'>ChangeRequest</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: []
  /ManagementSystemChangeRequests/searchInfo:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoManagementSystemChangeRequests
      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
  /ManagementSystemChangeRequests/{changeRequestNo}/copy:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Copies an existing managementSystemChangeRequest to a new object
      operationId: CopyManagementSystemChangeRequest
      parameters:
      - name: changeRequestNo
        in: path
        description: The changeRequestNo of the managementSystemChangeRequest to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new ManagementSystemChangeRequest object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequest'
        '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'>ChangeRequest_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: []
  /ManagementSystemChangeRequests/{changeRequestNo}/responses:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Gets a list of ChangeRequest responses
      operationId: GetManagementSystemChangeRequestResponses
      parameters:
      - name: changeRequestNo
        in: path
        description: The ChangeRequest no. to fetch values for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
        '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'>ChangeRequest</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: []
  /ManagementSystemChangeRequests/{changeRequestNo}/responses/count:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Returns number of ManagementSystemChangeRequestResponses for ChangeRequestNo
      operationId: CountManagementSystemChangeRequestResponses
      parameters:
      - name: changeRequestNo
        in: path
        description: The ChangeRequestNo
        required: true
        schema:
          type: string
      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'>ChangeRequest</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: []
  /ManagementSystemChangeRequests/{changeRequestNo}/addResponse:
    post:
      tags:
      - ManagementSystemChangeRequests
      summary: Add response
      operationId: AddManagementSystemChangeRequestResponse
      parameters:
      - name: changeRequestNo
        in: path
        description: The ChangeRequestNo to fetch for
        required: true
        schema:
          type: string
      requestBody:
        description: The ManagementSystemChangeRequestResponse DTO to send
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
      responses:
        '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'
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystems.ManagementSystemChangeRequestResponse'
        '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'>ChangeRequest_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: []
  /ManagementSystemChangeRequests/{changeRequestNo}/units:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Returns the units for a Change Request
      operationId: GetChangeRequestUnits
      parameters:
      - name: changeRequestNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ChangeRequestUnit'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ChangeRequestUnit'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ChangeRequestUnit'
        '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'>ChangeRequest</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: []
  /ManagementSystemChangeRequests/{changeRequestNo}/affectedunits:
    get:
      tags:
      - ManagementSystemChangeRequests
      summary: Returns the affected units for a Change Request
      operationId: GetChangeRequestAffectedUnits
      parameters:
      - name: changeRequestNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ChangeRequestUnit'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ChangeRequestUnit'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ChangeRequestUnit'
        '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'>ChangeRequest</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: []
  /ManagementSystemChangeRequests/{changeRequestNo}/markAsMinorChange:
    post:
      tags:
      - ManagementSystemChangeRequests
      summary: Marks ManagementSystemChangeRequest as minor change
      operationId: MarkManagementSystemChangeRequestAsMinorChange
      parameters:
      - name: changeRequestNo
        in: path
        description: The changeRequestNo of the managementSystemChangeRequest to be marked as minor change
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the updated ManagementSystemChangeRequest object
          content:
            text/plain:
              schema:
                $ref: '#/components

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