SERTICA Job Requests API

The JobRequests API from SERTICA — 17 operation(s) for jobrequests.

Operations 20

GET /JobRequests Gets a list of JobRequests #
POST /JobRequests Creates a new jobRequest record #
GET /JobRequests/{jobRequestNo} Gets a specific JobRequest #
PUT /JobRequests/{jobRequestNo} Updates an existing JobRequest #
DELETE /JobRequests/{jobRequestNo} Deletes an jobRequest record #
GET /JobRequests/{jobRequestNo}/history Gets history for a specific JobRequest #
POST /JobRequests/search Search for jobRequests Takes a SearchDefinition input, which can include… #
POST /JobRequests/searchCount Returns number of hits in a search for JobRequests Takes a SearchDefinition… #
POST /JobRequests/searchIndex/{jobRequestGuid} Get index of a record in a search for JobRequests Takes a SearchDefinition… #
GET /JobRequests/searchInfo Returns structured information about what and how you can search for #
POST /JobRequests/submit Creates a new jobRequest record #
GET /JobRequests/{jobRequestNo}/copy Copies an existing jobRequest to a new object #
GET /JobRequests/{jobRequestNo}/jobTemplate Creates a Job (non-persisted) based on the Job Request with the provided Job… #
GET /JobRequests/tasklistNodes Get jobrequest tasklist nodes #
POST /JobRequests/search/{jobRequestTemplateNo} Search for jobRequests using a specific Job Request Template Takes a Job… #
GET /JobRequests/searchInfo/{jobRequestTemplateNo} Returns structured information about what and how you can search for #
POST /JobRequests/searchCount/{jobRequestTemplateNo} Returns number of hits in a search for JobRequests using a specific Job Request… #
POST /JobRequests/searchIndex/{jobRequestGuid}/{jobRequestTemplateNo} Get index of a record in a search for JobRequests using a specific Job Request… #
GET /JobRequests/{jobRequestNo}/documents Returns a list of Documents used on the Job Request #
GET /JobRequests/{jobRequestNo}/documents/{documentNo} Returns a Documents used on the Job Request #

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-jobrequests-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-jobrequests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Job Requests API
  description: 'Online API browser for SERTICA Web API.


    Be aware that some endpoints are restricted by license or user rights and may not be available in your environment.


    Each endpoint includes a description of the required license and user rights.'
  version: v1
servers:
- url: /api
tags:
- name: JobRequests
paths:
  /JobRequests:
    get:
      tags:
      - JobRequests
      summary: Gets a list of JobRequests
      operationId: GetJobRequests
      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.JobRequest.JobRequest'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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'>JobRequest</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:
      - JobRequests
      summary: Creates a new jobRequest record
      operationId: CreateJobRequest
      parameters:
      - name: unitNo
        in: query
        description: ''
        schema:
          type: string
      requestBody:
        description: The JobRequest Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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'
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
  /JobRequests/{jobRequestNo}:
    get:
      tags:
      - JobRequests
      summary: Gets a specific JobRequest
      operationId: GetJobRequest
      parameters:
      - name: jobRequestNo
        in: path
        description: the jobRequestNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested jobRequest
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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 jobRequest with the supplied JobRequest 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'>JobRequest</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:
      - JobRequests
      summary: Updates an existing JobRequest
      operationId: UpdateJobRequest
      parameters:
      - name: jobRequestNo
        in: path
        description: The jobRequestNo of the jobRequest to update
        required: true
        schema:
          type: string
      requestBody:
        description: The JobRequest DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
      responses:
        '200':
          description: Returns the updated JobRequest object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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'>JobRequest_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:
      - JobRequests
      summary: Deletes an jobRequest record
      parameters:
      - name: jobRequestNo
        in: path
        description: The jobRequestNo of the JobRequest 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'>JobRequest_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: deleteJobRequestsByJobRequestNo
      x-operation-id-source: derived
  /JobRequests/{jobRequestNo}/history:
    get:
      tags:
      - JobRequests
      summary: Gets history for a specific JobRequest
      operationId: GetJobRequestHistory
      parameters:
      - name: jobRequestNo
        in: path
        description: The jobRequestNo 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 jobRequest
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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 jobRequest with the supplied JobRequest 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'>JobRequest_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: []
  /JobRequests/search:
    post:
      tags:
      - JobRequests
      summary: Search for jobRequests Takes a SearchDefinition input, which can include…
      operationId: SearchJobRequests
      parameters:
      - name: unitNo
        in: query
        description: ''
        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.JobRequest.JobRequest'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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'>JobRequest</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: []
  /JobRequests/searchCount:
    post:
      tags:
      - JobRequests
      summary: Returns number of hits in a search for JobRequests Takes a SearchDefinition…
      operationId: SearchCountJobRequests
      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'>JobRequest</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: []
  /JobRequests/searchIndex/{jobRequestGuid}:
    post:
      tags:
      - JobRequests
      summary: Get index of a record in a search for JobRequests Takes a SearchDefinition…
      operationId: SearchIndexJobRequests
      parameters:
      - name: jobRequestGuid
        in: path
        description: The jobRequest 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'>JobRequest</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: []
  /JobRequests/searchInfo:
    get:
      tags:
      - JobRequests
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoJobRequests
      parameters:
      - name: unitNo
        in: query
        description: ''
        schema:
          type: string
      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
  /JobRequests/submit:
    post:
      tags:
      - JobRequests
      summary: Creates a new jobRequest record
      operationId: CreateJobRequestWithFiles
      parameters:
      - name: unitNo
        in: query
        description: ''
        schema:
          type: string
      requestBody:
        description: Choose the file to upload
        content:
          multipart/form-data:
            schema:
              required:
              - File
              type: object
              properties:
                File:
                  type: string
                  format: binary
        required: true
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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'
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
  /JobRequests/{jobRequestNo}/copy:
    get:
      tags:
      - JobRequests
      summary: Copies an existing jobRequest to a new object
      operationId: CopyJobRequest
      parameters:
      - name: jobRequestNo
        in: path
        description: The JobRequestNo of the jobRequest to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new JobRequest object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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'>JobRequest_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: []
  /JobRequests/{jobRequestNo}/jobTemplate:
    get:
      tags:
      - JobRequests
      summary: Creates a Job (non-persisted) based on the Job Request with the provided Job…
      operationId: CreateJobFromJobRequest
      parameters:
      - name: jobRequestNo
        in: path
        description: Job Request No. of the Job Request to base the Job on
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Job.Job'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Job.Job'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Job.Job'
        '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'
        '404':
          description: Not Found
          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'>JobRequest</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: []
  /JobRequests/tasklistNodes:
    get:
      tags:
      - JobRequests
      summary: Get jobrequest tasklist nodes
      operationId: GetJobRequestTasklistNodes
      responses:
        '200':
          description: Returns all new job request tasklistnodes
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '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'>JobRequest</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: []
  /JobRequests/search/{jobRequestTemplateNo}:
    post:
      tags:
      - JobRequests
      summary: Search for jobRequests using a specific Job Request Template Takes a Job…
      operationId: SearchJobRequestsByTemplateNo
      parameters:
      - name: jobRequestTemplateNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: unitNo
        in: query
        description: ''
        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.JobRequest.JobRequest'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.JobRequest.JobRequest'
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
  /JobRequests/searchInfo/{jobRequestTemplateNo}:
    get:
      tags:
      - JobRequests
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoJobRequestsByTemplateNo
      parameters:
      - name: jobRequestTemplateNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: unitNo
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: Returns a list of valid search fields based on the given Job Request Template
          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
  /JobRequests/searchCount/{jobRequestTemplateNo}:
    post:
      tags:
      - JobRequests
      summary: Returns number of hits in a search for JobRequests using a specific Job Request…
      operationId: SearchCountJobRequestsByTemplateNo
      parameters:
      - name: jobRequestTemplateNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: unitNo
        in: query
        description: ''
        schema:
          type: string
      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
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
  /JobRequests/searchIndex/{jobRequestGuid}/{jobRequestTemplateNo}:
    post:
      tags:
      - JobRequests
      summary: Get index of a record in a search for JobRequests using a specific Job Request…
      operationId: SearchIndexJobRequestsByTemplateNo
      parameters:
      - name: jobRequestGuid
        in: path
        description: The jobRequest to get index for
        required: true
        schema:
          type: string
          format: uuid
      - name: jobRequestTemplateNo
        in: path
        des

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