SERTICA Evaluation Questions API

The EvaluationQuestions API from SERTICA — 13 operation(s) for evaluationquestions.

Operations 16

GET /EvaluationQuestions Gets a list of Evaluation questions #
POST /EvaluationQuestions Creates a new evaluation question record #
GET /EvaluationQuestions/{evaluationQuestionNo} Gets a specific Evaluation question by its EvaluationQuestionNo #
PUT /EvaluationQuestions/{evaluationQuestionNo} Updates an existing EvaluationQuestion #
DELETE /EvaluationQuestions/{evaluationQuestionNo} Deletes a evaluation question record #
GET /EvaluationQuestions/{evaluationQuestionNo}/history Gets history for a specific Evaluation Question #
POST /EvaluationQuestions/search Search for Evaluation questions Takes a SearchDefinition input, which can… #
POST /EvaluationQuestions/{objectNo}/searchEvaluationQuestionsForEvaluationDialog Search for Evaluation Questions to be used for Evaluation Dialog Takes a… #
POST /EvaluationQuestions/searchIndex/{evaluationQuestionGuid} Get index of a record in a search for evaluation question Takes a… #
POST /EvaluationQuestions/searchCount Returns number of hits in a search for Evaluation questions Takes a… #
GET /EvaluationQuestions/searchInfo Returns structured information about what and how you can search for #
GET /EvaluationQuestions/{evaluationQuestionNo}/copy Copies an existing evaluation question to a new object #
GET /EvaluationQuestions/{evaluationQuestionNo}/companies Gets a list of Evaluation Question Companies #
GET /EvaluationQuestions/{evaluationQuestionNo}/addressCategories Gets a list of Evaluation Question Address Categories #
GET /EvaluationQuestions/{evaluationQuestionNo}/itemTypes Gets a list of Evaluation Question Item Types #
GET /EvaluationQuestions/{evaluationQuestionNo}/evaluationAnswers Gets a list of Evaluation Question Evaluation Answers #

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-evaluationquestions-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-evaluationquestions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Evaluation Questions 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: EvaluationQuestions
paths:
  /EvaluationQuestions:
    get:
      tags:
      - EvaluationQuestions
      summary: Gets a list of Evaluation questions
      operationId: GetEvaluationQuestions
      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.ProcurementQA.EvaluationQuestion'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
        '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'>EvaluationItem</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:
      - EvaluationQuestions
      summary: Creates a new evaluation question record
      operationId: CreateEvaluationQuestion
      requestBody:
        description: The EvaluationQuestion Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
        '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'>EvaluationItem_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: []
  /EvaluationQuestions/{evaluationQuestionNo}:
    get:
      tags:
      - EvaluationQuestions
      summary: Gets a specific Evaluation question by its EvaluationQuestionNo
      operationId: GetEvaluationQuestion
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The EvaluationQuestionNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested evaluation question
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
        '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 evaluation question with the supplied EvaluationQuestionNo 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'>EvaluationItem</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:
      - EvaluationQuestions
      summary: Updates an existing EvaluationQuestion
      operationId: UpdateEvaluationQuestion
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The EvaluationQuestionNo of the evaluation question to update
        required: true
        schema:
          type: string
      requestBody:
        description: The EvaluationQuestion DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
      responses:
        '200':
          description: Returns the updated EvaluationQuestion object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
        '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'>EvaluationItem_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:
      - EvaluationQuestions
      summary: Deletes a evaluation question record
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The EvaluationQuestionNo of the evaluation question 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'>EvaluationItem_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: deleteEvaluationQuestionsByEvaluationQuestionNo
      x-operation-id-source: derived
  /EvaluationQuestions/{evaluationQuestionNo}/history:
    get:
      tags:
      - EvaluationQuestions
      summary: Gets history for a specific Evaluation Question
      operationId: GetEvaluationQuestionHistory
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The EvaluationQuestionNo 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 evaluation question
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
        '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 evaluation question with the supplied EvaluationQuestionNo 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'>EvaluationItem_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: []
  /EvaluationQuestions/search:
    post:
      tags:
      - EvaluationQuestions
      summary: Search for Evaluation questions Takes a SearchDefinition input, which can…
      operationId: SearchEvaluationQuestions
      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.ProcurementQA.EvaluationQuestion'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
        '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'>EvaluationItem</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: []
  /EvaluationQuestions/{objectNo}/searchEvaluationQuestionsForEvaluationDialog:
    post:
      tags:
      - EvaluationQuestions
      summary: Search for Evaluation Questions to be used for Evaluation Dialog Takes a…
      operationId: SearchEvaluationQuestionsForEvaluationDialog
      parameters:
      - name: objectNo
        in: path
        description: No of the object that is to be evaluated on
        required: true
        schema:
          type: string
      - 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.ProcurementQA.EvaluationQuestion'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
        '401':
          description: If user is unauthorized
        '403':
          description: Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>ProcurementQA</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /EvaluationQuestions/searchIndex/{evaluationQuestionGuid}:
    post:
      tags:
      - EvaluationQuestions
      summary: Get index of a record in a search for evaluation question Takes a…
      operationId: SearchIndexEvaluationQuestions
      parameters:
      - name: evaluationQuestionGuid
        in: path
        description: The evaluation question 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'>EvaluationItem</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: []
  /EvaluationQuestions/searchCount:
    post:
      tags:
      - EvaluationQuestions
      summary: Returns number of hits in a search for Evaluation questions Takes a…
      operationId: SearchCountEvaluationQuestions
      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'>EvaluationItem</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: []
  /EvaluationQuestions/searchInfo:
    get:
      tags:
      - EvaluationQuestions
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoEvaluationQuestions
      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
  /EvaluationQuestions/{evaluationQuestionNo}/copy:
    get:
      tags:
      - EvaluationQuestions
      summary: Copies an existing evaluation question to a new object
      operationId: CopyEvaluationQuestion
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The EvaluationQuestionNo of the evaluation question to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new EvaluationQuestion object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestion'
        '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'>EvaluationItem_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: []
  /EvaluationQuestions/{evaluationQuestionNo}/companies:
    get:
      tags:
      - EvaluationQuestions
      summary: Gets a list of Evaluation Question Companies
      operationId: GetEvaluationQuestionCompanies
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The No. to fetch values for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionCompany'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionCompany'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionCompany'
        '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'>EvaluationItem</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: []
  /EvaluationQuestions/{evaluationQuestionNo}/addressCategories:
    get:
      tags:
      - EvaluationQuestions
      summary: Gets a list of Evaluation Question Address Categories
      operationId: GetEvaluationQuestionAddressCategories
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The No. to fetch values for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionAddressCategory'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionAddressCategory'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionAddressCategory'
        '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'>EvaluationItem</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: []
  /EvaluationQuestions/{evaluationQuestionNo}/itemTypes:
    get:
      tags:
      - EvaluationQuestions
      summary: Gets a list of Evaluation Question Item Types
      operationId: GetEvaluationQuestionItemTypes
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The No. to fetch values for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionItemType'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionItemType'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionItemType'
        '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'>EvaluationItem</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: []
  /EvaluationQuestions/{evaluationQuestionNo}/evaluationAnswers:
    get:
      tags:
      - EvaluationQuestions
      summary: Gets a list of Evaluation Question Evaluation Answers
      operationId: GetEvaluationQuestionEvaluationAnswers
      parameters:
      - name: evaluationQuestionNo
        in: path
        description: The No. to fetch values for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionEvaluationAnswer'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionEvaluationAnswer'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ProcurementQA.EvaluationQuestionEvaluationAnswer'
        '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'>EvaluationItem</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:
    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:
      - Equals
      - LessThan
      - GreaterThan
      - Like
      - Range
      - In
      - Dynamic
      - StartsWith
      - EndsWith
      - IsNull
      - NotLike
      - Or
      - NotEquals
      - NotIn
      type: string
    SerticaWebApi.Models.ProcurementQA.EvaluationQuestionAddressCategory:
      type: object
      properties:
        evaluationQuestionNo:
          type:
          - string
          - 'null'


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