SERTICA Brb Operations API

The BrbOperations API from SERTICA — 18 operation(s) for brboperations.

Operations 21

GET /BrbOperations Gets a list of BrbOperations #
POST /BrbOperations Creates a new brbOperation record together with Soundings #
GET /BrbOperations/{operationNo} Gets a specific BrbOperation #
PUT /BrbOperations/{operationNo} Updates an existing BrbOperation #
DELETE /BrbOperations/{operationNo} Deletes a brbOperation record #
GET /BrbOperations/{operationNo}/history Gets history for a specific BrbOperation #
POST /BrbOperations/search Search for BrbOperations Takes a SearchDefinition input, which can include… #
POST /BrbOperations/searchIndex/{brbOperationGuid} Get index of a record in a search for brbOperations Takes a SearchDefinition… #
POST /BrbOperations/searchCount Returns number of hits in a search for BrbOperations Takes a SearchDefinition… #
GET /BrbOperations/searchInfo Returns structured information about what and how you can search for #
GET /BrbOperations/{operationNo}/copy Copies an existing BrbOperation to a new object #
DELETE /BrbOperations/{operationNo}/force Deletes a brbOperation record #
POST /BrbOperations/GetPrintoutForBrbOperations Get printout for brb operations #
GET /BrbOperations/GetLatestBrbOperationEndTime Get latest brb operation end time #
POST /BrbOperations/GetPrintoutTableDataForOperations Get printout table data for brb operations #
POST /BrbOperations/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-brboperations-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-brboperations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Brb 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: BrbOperations
paths:
  /BrbOperations:
    get:
      tags:
      - BrbOperations
      summary: Gets a list of BrbOperations
      operationId: GetBrbOperations
      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.BrbOperation'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
        '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'>BrbOperation</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:
      - BrbOperations
      summary: Creates a new brbOperation record together with Soundings
      operationId: CreateBrbOperation
      requestBody:
        description: The BrbOperation and Soudings wrapper Object
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperationCreate'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperationCreate'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperationCreate'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperationCreate'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
        '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'>BrbOperation_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: []
  /BrbOperations/{operationNo}:
    get:
      tags:
      - BrbOperations
      summary: Gets a specific BrbOperation
      operationId: GetBrbOperation
      parameters:
      - name: operationNo
        in: path
        description: The operationNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested brbOperation
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
        '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 brbOperation with the supplied BrbOperation 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'>BrbOperation</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:
      - BrbOperations
      summary: Updates an existing BrbOperation
      operationId: UpdateBrbOperation
      parameters:
      - name: operationNo
        in: path
        description: The operationNo of the brbOperation to update
        required: true
        schema:
          type: string
      requestBody:
        description: The BrbOperation DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
      responses:
        '200':
          description: Returns the updated BrbOperation object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
        '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'>BrbOperation_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:
      - BrbOperations
      summary: Deletes a brbOperation record
      parameters:
      - name: operationNo
        in: path
        description: The operationNo of the BrbOperation 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'>BrbOperation_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: deleteBrbOperationsByOperationNo
      x-operation-id-source: derived
  /BrbOperations/{operationNo}/history:
    get:
      tags:
      - BrbOperations
      summary: Gets history for a specific BrbOperation
      operationId: GetBrbOperationHistory
      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 brbOperation
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
        '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 brbOperation with the supplied BrbOperation 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'>BrbOperation_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: []
  /BrbOperations/search:
    post:
      tags:
      - BrbOperations
      summary: Search for BrbOperations Takes a SearchDefinition input, which can include…
      operationId: SearchBrbOperations
      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 brbOperation
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
        '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'>BrbOperation</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: []
  /BrbOperations/searchIndex/{brbOperationGuid}:
    post:
      tags:
      - BrbOperations
      summary: Get index of a record in a search for brbOperations Takes a SearchDefinition…
      operationId: SearchIndexBrbOperations
      parameters:
      - name: brbOperationGuid
        in: path
        description: The brbOperation 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'>BrbOperation</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: []
  /BrbOperations/searchCount:
    post:
      tags:
      - BrbOperations
      summary: Returns number of hits in a search for BrbOperations Takes a SearchDefinition…
      operationId: SearchCountBrbOperations
      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'>BrbOperation</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: []
  /BrbOperations/searchInfo:
    get:
      tags:
      - BrbOperations
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoBrbOperations
      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
  /BrbOperations/{operationNo}/copy:
    get:
      tags:
      - BrbOperations
      summary: Copies an existing BrbOperation to a new object
      operationId: CopyBrbOperation
      parameters:
      - name: operationNo
        in: path
        description: The operationNo of the brbOperation to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new BrbOperation object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperation'
        '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'>BrbOperation_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: []
  /BrbOperations/{operationNo}/force:
    delete:
      tags:
      - BrbOperations
      summary: Deletes a brbOperation record
      parameters:
      - name: operationNo
        in: path
        description: The operationNo of the BrbOperation 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'>BrbOperation_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: deleteBrbOperationsByOperationNoForce
      x-operation-id-source: derived
  /BrbOperations/{operationNo}/Documents:
    get:
      tags:
      - BrbOperations
      summary: Returns a list of Documents on the BrbOperation
      operationId: GetBrbOperationDocumentLinks
      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.BrbOperationDocument'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.Documents.BrbOperationDocument'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.Documents.BrbOperationDocument'
        '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'>BrbOperation</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: []
  /BrbOperations/{operationNo}/Soundings:
    get:
      tags:
      - BrbOperations
      summary: Returns a list of Soundings on the BrbOperation
      operationId: GetBrbOperationSoundingLinks
      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.BrbOperationDocument'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.Documents.BrbOperationDocument'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.Documents.BrbOperationDocument'
        '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'>BrbOperation</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: []
  /BrbOperations/{operationNo}/Receivers:
    get:
      tags:
      - BrbOperations
      summary: Returns a list of Receivers on the BrbOperation
      operationId: GetBrbOperationReceiverLinks
      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.BrbOperationBrbReceiver'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperationBrbReceiver'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.BrbOperationBrbReceiver'
        '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'>BrbOperation</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: []
  /BrbOperations/{operationNo}/Signers:
    get:
      tags:
      - BrbOperations
      summary: Returns a list of Signers on the BrbOperation
      operationId: GetBrbOperationSignersLinks
      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.BrbOperationSigner'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.BrbOperationSigner'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogBook.BrbOperationSigner'
        '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'>BrbOperation</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: []
  /BrbOperations/{operationNo}/Documents/{documentNo}:
    get:
      tags:
      - BrbOperations
      summary: Returns a specific Document on the Certificate
      operationId: GetBrbOperationDocumentLink
      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.BrbOperationDocument'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.Documents.BrbOperationDocument'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ElectronicLogbook.Documents.BrbOperationDocument'
        '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'>BrbOperation</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: []
  /BrbOperations/GetPrintoutForBrbOperations:
    post:
      tags:
      - BrbOperations
      operationId: GetPrintoutForBrbOperations
      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:
            schem

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