SERTICA Grb Operations API

The GrbOperations API from SERTICA — 18 operation(s) for grboperations.

Operations 21

GET /GrbOperations Gets a list of GrbOperations #
POST /GrbOperations Creates a new GrbOperation #
GET /GrbOperations/{operationNo} Gets a specific GrbOperation #
PUT /GrbOperations/{operationNo} Updates an existing GrbOperation #
DELETE /GrbOperations/{operationNo} Deletes a GrbOperation record #
GET /GrbOperations/{operationNo}/history Gets history for a specific GrbOperation #
POST /GrbOperations/search Search for GrbOperations Takes a SearchDefinition input, which can include… #
POST /GrbOperations/searchIndex/{GrbOperationGuid} Get index of a record in a search for GrbOperations Takes a SearchDefinition… #
POST /GrbOperations/searchCount Returns number of hits in a search for GrbOperations Takes a SearchDefinition… #
GET /GrbOperations/searchInfo Returns structured information about what and how you can search for #
GET /GrbOperations/{operationNo}/copy Copies an existing GrbOperation to a new object #
GET /GrbOperations/{operationNo}/DischargedProducts Returns a list of Discharged Products for a specific GrbOperation #
GET /GrbOperations/{operationNo}/GrbOperationEnvironmentalItems Returns a list of Env Items for a specific GrbOperation #
POST /GrbOperations/GetPrintoutForGrbOperations Gets a printout, based on a list of operationNo's #
GET /GrbOperations/GetLatestGrbOperationEndTime Get the latest operation end time #
POST /GrbOperations/GetPrintoutTableDataForGrbOperations Gets a printout, based on a list of operationNo's #
POST /GrbOperations/sign Signs list of Operations #

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-grboperations-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-grboperations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Grb Operations 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: GrbOperations
paths:
  /GrbOperations:
    get:
      tags:
      - GrbOperations
      summary: Gets a list of GrbOperations
      operationId: GetGrbOperations
      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.ElectronicLogBook.GrbOperation'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
        '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'>GrbOperation</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:
      - GrbOperations
      summary: Creates a new GrbOperation
      operationId: CreateGrbOperation
      requestBody:
        description: The GrbOperation wrapper Object
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperationCreate'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperationCreate'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperationCreate'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperationCreate'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
        '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'>GrbOperation_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: []
  /GrbOperations/{operationNo}:
    get:
      tags:
      - GrbOperations
      summary: Gets a specific GrbOperation
      operationId: GetGrbOperation
      parameters:
      - name: operationNo
        in: path
        description: The operationNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested GrbOperation
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
        '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 GrbOperation with the supplied GrbOperation 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'>GrbOperation</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:
      - GrbOperations
      summary: Updates an existing GrbOperation
      operationId: UpdateGrbOperation
      parameters:
      - name: operationNo
        in: path
        description: The operationNo of the GrbOperation to update
        required: true
        schema:
          type: string
      requestBody:
        description: The GrbOperation DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
      responses:
        '200':
          description: Returns the updated GrbOperation object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
        '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'>GrbOperation_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:
      - GrbOperations
      summary: Deletes a GrbOperation record
      parameters:
      - name: operationNo
        in: path
        description: The operationNo of the GrbOperation to delete
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.DeletionPINVerification'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.DeletionPINVerification'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.DeletionPINVerification'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.DeletionPINVerification'
      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'>GrbOperation_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: deleteGrbOperationsByOperationNo
      x-operation-id-source: derived
  /GrbOperations/{operationNo}/history:
    get:
      tags:
      - GrbOperations
      summary: Gets history for a specific GrbOperation
      operationId: GetGrbOperationHistory
      parameters:
      - name: operationNo
        in: path
        description: The operationNo 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 GrbOperation
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
        '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 GrbOperation with the supplied GrbOperation 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'>GrbOperation_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: []
  /GrbOperations/search:
    post:
      tags:
      - GrbOperations
      summary: Search for GrbOperations Takes a SearchDefinition input, which can include…
      operationId: SearchGrbOperations
      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: Returns the requested GrbOperation
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
        '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'>GrbOperation</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: []
  /GrbOperations/searchIndex/{GrbOperationGuid}:
    post:
      tags:
      - GrbOperations
      summary: Get index of a record in a search for GrbOperations Takes a SearchDefinition…
      operationId: SearchIndexGrbOperations
      parameters:
      - name: GrbOperationGuid
        in: path
        description: The GrbOperation 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'>GrbOperation</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: []
  /GrbOperations/searchCount:
    post:
      tags:
      - GrbOperations
      summary: Returns number of hits in a search for GrbOperations Takes a SearchDefinition…
      operationId: SearchCountGrbOperations
      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'>GrbOperation</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: []
  /GrbOperations/searchInfo:
    get:
      tags:
      - GrbOperations
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoGrbOperations
      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
  /GrbOperations/{operationNo}/copy:
    get:
      tags:
      - GrbOperations
      summary: Copies an existing GrbOperation to a new object
      operationId: CopyGrbOperation
      parameters:
      - name: operationNo
        in: path
        description: The operationNo of the GrbOperation to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new GrbOperation object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperation'
        '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'>GrbOperation_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: []
  /GrbOperations/{operationNo}/Documents:
    get:
      tags:
      - GrbOperations
      summary: Returns a list of Documents on the GrbOperation
      operationId: GetGrbOperationDocumentLinks
      parameters:
      - name: operationNo
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.Documents.GrbOperationDocument'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.Documents.GrbOperationDocument'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.Documents.GrbOperationDocument'
        '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'>GrbOperation</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: []
  /GrbOperations/{operationNo}/Documents/{documentNo}:
    get:
      tags:
      - GrbOperations
      summary: Returns a specific Document on the Certificate
      operationId: GetGrbOperationDocumentLink
      parameters:
      - name: operationNo
        in: path
        required: true
        schema:
          type: string
      - name: documentNo
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.Documents.GrbOperationDocument'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.Documents.GrbOperationDocument'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.Documents.GrbOperationDocument'
        '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'>GrbOperation</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: []
  /GrbOperations/{operationNo}/DischargedProducts:
    get:
      tags:
      - GrbOperations
      summary: Returns a list of Discharged Products for a specific GrbOperation
      operationId: GetDischargedProducts
      parameters:
      - name: operationNo
        in: path
        description: The Operation No to fetch items for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the Discharged Products for the Operation
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.DischargedProductView'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.DischargedProductView'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.DischargedProductView'
        '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'>GrbOperation</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: []
  /GrbOperations/{operationNo}/GrbOperationEnvironmentalItems:
    get:
      tags:
      - GrbOperations
      summary: Returns a list of Env Items for a specific GrbOperation
      operationId: GetGrbOperationEnvironmentalItems
      parameters:
      - name: operationNo
        in: path
        description: The Operation No to fetch items for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the Discharged Products for the Operation
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.ElectronicLogbook.GarbageRecordbook.Views.GrbOperationEnvironmentalItemView'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.ElectronicLogbook.GarbageRecordbook.Views.GrbOperationEnvironmentalItemView'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.ElectronicLogbook.GarbageRecordbook.Views.GrbOperationEnvironmentalItemView'
        '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'>GrbOperation</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: []
  /GrbOperations/GetPrintoutForGrbOperations:
    post:
      tags:
      - GrbOperations
      summary: Gets a printout, based on a list of operationNo's
      operationId: GetPrintoutForGrbOperations
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.PrintoutOptions'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.PrintoutOptions'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.PrintoutOptions'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.PrintoutOptions'
      responses:
        '200':
          description: OK
        '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'>GrbOperation</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: []
  /GrbOperations/GetLatestGrbOperationEndTime:
    get:
      tags:
      - GrbOperations
      summary: Get the latest operation end time
      operationId: GetLatestGrbOperationEndTime
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
                format: date-time
            application/json:
              schema:
                type: string
                format: date-time
            text/json:
              schema:
                type: string
                format: date-time
        '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'>GrbOperation</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: []
  /GrbOperations/{operationNo}/Signers:
    get:
      tags:
      - GrbOperations
      summary: Returns a list of Signers on the GrbOperation
      operationId: GetGrbOperationSignersLinks
      parameters:
      - name: operationNo
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperationSigner'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperationSigner'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.GrbOperationSigner'
        '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'>GrbOperation</td><td style='border-bo

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