SERTICA Certificate Groups API

The Certificate Groups API from SERTICA — 11 operation(s) for certificate groups.

Operations 14

GET /CertificateGroups Gets a list of CertificateGroups #
POST /CertificateGroups Creates a new certificateGroup record #
GET /CertificateGroups/{certificateGroupID} Gets a specific CertificateGroup #
PUT /CertificateGroups/{certificateGroupID} Updates an existing CertificateGroup #
DELETE /CertificateGroups/{certificateGroupID} Deletes an certificateGroup record #
GET /CertificateGroups/{certificateGroupID}/history Gets history for a specific certificateGroup #
POST /CertificateGroups/search Search for CertificateGroups Takes a SearchDefinition input, which can include… #
POST /CertificateGroups/searchCount Returns number of hits in a search for CertificateGroups Takes a… #
POST /CertificateGroups/searchIndex/{certificateGroupGuid} Get index of a record in a search for CertificateGroups Takes a… #
GET /CertificateGroups/searchInfo Returns structured information about what and how you can search for #
GET /CertificateGroups/{certificateGroupID}/copy Copies an existing certificateGroup to a new object #
GET /CertificateGroups/{certificateGroupID}/vesselTypes Returns a list of Certificate Group Vessel Types for a specific Certificate… #
GET /CertificateGroups/{groupID}/Rule Returns the Certificate Group Rule of requested Certificate Group #
GET /CertificateGroups/{groupID}/notificationSettings Gets usages for a specific Certificate Group #

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-certificate-groups-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-certificate-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Certificate Groups 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: Certificate Groups
paths:
  /CertificateGroups:
    get:
      tags:
      - Certificate Groups
      summary: Gets a list of CertificateGroups
      operationId: GetCertificateGroups
      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.Certificate.CertificateGroup'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
        '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'>CertificateGroup</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:
      - Certificate Groups
      summary: Creates a new certificateGroup record
      operationId: CreateCertificateGroup
      requestBody:
        description: The certificateGroup Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
        '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'>CertificateGroup_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: []
  /CertificateGroups/{certificateGroupID}:
    get:
      tags:
      - Certificate Groups
      summary: Gets a specific CertificateGroup
      operationId: GetCertificateGroup
      parameters:
      - name: certificateGroupID
        in: path
        description: the certificateGroupID to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested certificateGroup
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
        '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 certificateGroup with the supplied certificateGroup 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'>CertificateGroup</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:
      - Certificate Groups
      summary: Updates an existing CertificateGroup
      operationId: UpdateCertificateGroup
      parameters:
      - name: certificateGroupID
        in: path
        description: The certificateGroupID of the CertificateGroup to update
        required: true
        schema:
          type: string
      requestBody:
        description: The CertificateGroup DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
      responses:
        '200':
          description: Returns the updated CertificateGroup object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
        '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'>CertificateGroup_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:
      - Certificate Groups
      summary: Deletes an certificateGroup record
      parameters:
      - name: certificateGroupID
        in: path
        description: The certificateGroupID of the certificateGroup 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'>CertificateGroup_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: deleteCertificateGroupsByCertificateGroupID
      x-operation-id-source: derived
  /CertificateGroups/{certificateGroupID}/history:
    get:
      tags:
      - Certificate Groups
      summary: Gets history for a specific certificateGroup
      operationId: GetCertificateGroupHistory
      parameters:
      - name: certificateGroupID
        in: path
        description: The certificateGroupID 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 CertificateGroup
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
        '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 CertificateGroup with the supplied CertificateGroup 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'>CertificateGroup_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: []
  /CertificateGroups/search:
    post:
      tags:
      - Certificate Groups
      summary: Search for CertificateGroups Takes a SearchDefinition input, which can include…
      operationId: SearchCertificateGroups
      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.Certificate.CertificateGroup'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
        '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'>CertificateGroup</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: []
  /CertificateGroups/searchCount:
    post:
      tags:
      - Certificate Groups
      summary: Returns number of hits in a search for CertificateGroups Takes a…
      operationId: SearchCountCertificateGroups
      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'>CertificateGroup</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: []
  /CertificateGroups/searchIndex/{certificateGroupGuid}:
    post:
      tags:
      - Certificate Groups
      summary: Get index of a record in a search for CertificateGroups Takes a…
      operationId: SearchIndexCertificateGroups
      parameters:
      - name: certificateGroupGuid
        in: path
        description: The CertificateGroup 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'>CertificateGroup</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: []
  /CertificateGroups/searchInfo:
    get:
      tags:
      - Certificate Groups
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoCertificateGroups
      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
  /CertificateGroups/{certificateGroupID}/copy:
    get:
      tags:
      - Certificate Groups
      summary: Copies an existing certificateGroup to a new object
      operationId: CopyCertificateGroup
      parameters:
      - name: certificateGroupID
        in: path
        description: The certificateGroupID of the certificateGroup to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new certificateGroup object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroup'
        '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'>CertificateGroup_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: []
  /CertificateGroups/{certificateGroupID}/vesselTypes:
    get:
      tags:
      - Certificate Groups
      summary: Returns a list of Certificate Group Vessel Types for a specific Certificate…
      operationId: GetCertificateGroupVesselTypes
      parameters:
      - name: certificateGroupID
        in: path
        description: The Certificate Group No to fetch items for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the Certificate Group Vessel Types for the Certificate Group
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroupVesselType'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroupVesselType'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroupVesselType'
        '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'>CertificateGroup</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: []
  /CertificateGroups/{groupID}/Rule:
    get:
      tags:
      - Certificate Groups
      summary: Returns the Certificate Group Rule of requested Certificate Group
      operationId: GetCertificateGroupRuleByGroupId
      parameters:
      - name: groupID
        in: path
        description: The Certificate Group No to fetch items for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the Certificate Group Rule for the requested Certificate Group
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroupRule'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroupRule'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroupRule'
        '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'>CertificateGroup</td><td style='border-bottom:none'>View</td></tr><tr><td style='border-bottom:none;padding-right:5px'>CertificateGroupRule</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: []
  /CertificateGroups/{groupID}/notificationSettings:
    get:
      tags:
      - Certificate Groups
      summary: Gets usages for a specific Certificate Group
      operationId: GetNotificationSettingsForCertificateGroup
      parameters:
      - name: groupID
        in: path
        description: The Group ID to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns a list of CertificateNotificationSettings attached to the requested certificate
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateNotificationSettingCertificateGroup'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateNotificationSettingCertificateGroup'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateNotificationSettingCertificateGroup'
        '400':
          description: Returns a validation result with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: If a certificate with the supplied Certificate 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'>CertificateGroup</td><td style='border-bottom:none'>View</td></tr><tr><td style='border-bottom:none;padding-right:5px'>CertificateNotiSetting</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: []
components:
  schemas:
    SerticaWebApi.Models.Certificate.CertificateGroup:
      type: object
      properties:
        certificateGroupNo:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        groupID:
          type:
          - string
          - 'null'
        parentGroupID:
          type:
          - string
          - 'null'
        parentGroupNo:
          type:
          - string
          - 'null'
        parentGroupName:
          type:
          - string
          - 'null'
        defaultResponsibleNo:
          type:
          - string
          - 'null'
        defaultResponsibleName:
          type:
          - string
          - 'null'
        defaultResponsibleType:
          type:
          - string
          - 'null'
        certificateGroupRuleNo:
          type:
          - string
          - 'null'
        certificateGroupRuleName:
          type:
          - string
          - 'null'
        certificateLocationNo:
          type:
          - string
          - 'null'
        certificateLocationName:
          type:
          - string
          - 'null'
        daysAfterAnnualDate:
          type:
          - integer
          - 'null'
          format: int32
        daysAfterExpireDate:
          type:
          - integer
          - 'null'
          format: int32
        daysAfterIntermediateDate:
          type:
          - integer
          - 'null'
          format: int32
        daysAfterPeriodicalDate:
          type:
          - integer
          - 'null'
          format: int32
        daysAfterVerificationDate:
          type:
          - integer
          - 'null'
          format: int32
        annualDurationDays:
          type:
          - integer
          - 'null'
          format: int32
        expireDurationDays:
          type:
          - integer
          - 'null'
          format: int32
        intermediateDurationDays:
          type:
          - integer
          - 'null'
          format: int32
        periodicalDurationDays:
          type:
          - integer
          - 'null'
          format: int32
        verificationDurationDays:
          type:
          - integer
          - 'null'
          format: int32
        sortOrder:
          type:
          - integer
          - 'null'
          format: int32
        doNotAllowRenewOnUnit:
          type:
          - boolean
          - 'null'
        vesselTypes:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateGroupVesselType'
        notificationSettings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Certificate.CertificateCertificateNotificationSetting'
        updateUserNo:
          type:
          - string
          - 'null'
        updateUserName:
          type:
          - string
          - 'null'
        updateDate:
          type:
          - string
          - 'null'
          format: date-time
        createUserNo:
          type:
          - string
          - 'null'
        createUserName:
          type:
          - string
          - 'null'
        createDate:
          type:
          - string
          - 'null'
          format: date-time
        guid:
          type:
          - string
          - 'null'
          format: uuid
        liveObjectGuid:
          type:
          - string
          - 'null'
          format: uuid
        unitGuid:
          type:
          - string
          - 'null'
          format: uuid
        deleted:
          type: boolean
        latestHistoryGuid:
          type:
          - string
          - 'null'
          format: uuid
        links:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Link'
          readOnly: true
      additionalProperties: false
    Logihold.BusinessObjects.LogiholdObjModel.View.SortDirection:
      enum:
      - Asc
      - Desc
      type: string
    SerticaWebApi.Models.BrokenRule:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/SerticaWebApi.Models.BrokenRuleType'
        index:
          type:
          - integer
          - 'null'
          format: int32
        objectGuid:
          type:
          - string
          - 'null'
          format: uuid
        field:
          type:
          - string
          - 'null'
        field2:
          type:
          - string
          - 'null'
        field3:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
      additionalProperties: false
    Logihold.BusinessObjects.LogiholdObjModel.Search.SearchOperator:
      enum

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