SERTICA Items API

The Items API from SERTICA — 39 operation(s) for items.

Operations 45

GET /Items Gets a list of Items #
POST /Items Creates a new item record #
GET /Items/{itemNo} Gets a specific Item #
PUT /Items/{itemNo} Updates an existing Item #
DELETE /Items/{itemNo} Deletes an item record #
GET /Items/{itemNo}/history Gets history for a specific Item #
POST /Items/search Search for items Takes a SearchDefinition input, which can include filters and… #
POST /Items/searchCount Returns number of hits in a search for Items Takes a SearchDefinition input… #
POST /Items/searchIndex/{sparePartGuid} Get index of a record in a search for Items Takes a SearchDefinition input… #
GET /Items/searchInfo Returns structured information about what and how you can search for #
DELETE /Items/{itemNo}/force Force deletes a item record Force deleting records may cause existing records… #
GET /Items/{itemNo}/warehouses Returns a list of warehouses on the Item #
POST /Items/{itemNo}/adjuststock Performs a stock adjustment on the given item #
POST /Items/{itemNo}/movestock Moves stock from one location to another #
GET /Items/{itemNo}/Suppliers Returns a list of Suppliers used for the Item #
POST /Items/searchitemsuppliers Returns a list of Suppliers used for the items sent with the body #
GET /Items/{itemNo}/Suppliers/{supplierNo} Returns a specific Item Supplier #
GET /Items/{itemNo}/copy Copies an existing Item to a new object #
POST /Items/labels/{documentNo} Gets the labels to print #
GET /Items/labels/{labelTemplateDocumentNo}/{settingsKey} Get the labels to print using ´settings key #
GET /Items/{itemNo}/Components Returns a list of ComponentItems (M2M relation object) #
GET /Items/{itemNo}/Suppliers/{supplierNo}/Prices Returns a list of ItemSupplierPrice objects #
GET /Items/{itemNo}/ItemGroups Returns a list of ItemGroups used for the Item #
GET /Items/{itemNo}/documents Returns a list of Documents used on the Item #
POST /Items/appSubmitStockMovement Makes a stock movement using the applied AppStockMovement data #
GET /Items/{itemNo}/units Returns a list of ItemUnits #
POST /Items/appGetUnavailableItems Returns a list of ItemGroups used for the Item #
GET /Items/{itemNo}/purchaseOrders/count Returns the number of purchase orders where the item is linked #
GET /Items/{itemNo}/purchaseOrders Returns the purchase orders where the item is linked #
GET /Items/{itemNo}/priceHistory Get the price history for the item #
GET /Items/{itemNo}/suppliers/{supplierNo}/ports Returns a list of Item Supplier Ports #
GET /Items/{itemNo}/suppliers/{supplierNo}/ports/{portCodeNo}/prices Get item supplier port prices #
GET /Items/propertyDefinitions Get a list of PropertyDefinitions #
POST /Items/propertyDefinitions Creates a new PropertyDefinition record #
GET /Items/propertyDefinitions/{propertyDefinitionGuid} Gets a specific PropertyDefinition #
PUT /Items/propertyDefinitions/{propertyDefinitionGuid} Updates an existing PropertyDefinition #
DELETE /Items/propertyDefinitions/{propertyDefinitionGuid} Deletes a PropertyDefinition record #
GET /Items/propertyDefinitions/{propertyDefinitionGuid}/listValues Returns a list of values for a PropertyDefinition #
DELETE /Items/propertyDefinitions/{propertyDefinitionGuid}/force Force Deletes a PropertyDefinition record #
GET /Items/propertyDefinitions/{propertyName}/available Lookup if PropertyName of a PropertyDefinition is not already in use and… #
POST /Items/screenLayout Bulk updates screenlayout and a list of Property Definitions. #
POST /Items/{itemNo}/webhooklogs/search Searches the Webhooks associated with the Item #
POST /Items/{itemNo}/webhooklogs/searchCount Returns number of hits in a search for the Item's Webhook Logs. #
POST /Items/{itemNo}/webhooklogs/{webhookLogGuid}/retransmit Retransmits a specific Webhook based on the selected Webhook Log #
POST /Items/{itemNo}/webhooklogs/{webhookLogGuid}/resolve Resolves a specific Webhook Log with a Response Log entry #

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-items-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-items-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Items 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: Items
paths:
  /Items:
    get:
      tags:
      - Items
      summary: Gets a list of Items
      operationId: GetItems
      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.Item.Item'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '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'>SparePart</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:
      - Items
      summary: Creates a new item record
      operationId: CreateItem
      requestBody:
        description: The Item Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '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'>SparePart_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: []
  /Items/{itemNo}:
    get:
      tags:
      - Items
      summary: Gets a specific Item
      operationId: GetItem
      parameters:
      - name: itemNo
        in: path
        description: the ItemNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested item
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '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 item with the supplied Item 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'>SparePart</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:
      - Items
      summary: Updates an existing Item
      operationId: UpdateItem
      parameters:
      - name: itemNo
        in: path
        description: The ItemNo of the item to update
        required: true
        schema:
          type: string
      requestBody:
        description: The Item DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
      responses:
        '200':
          description: Returns the updated Item object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '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'>SparePart_Update</td><td style='border-bottom:none'>Update</td></tr><tr><td style='border-bottom:none;padding-right:5px'>SparePart_Update</td><td style='border-bottom:none'>Update</td></tr><tr><td style='border-bottom:none;padding-right:5px'>SparePart_AllowWarehouse</td><td style='border-bottom:none'>Function</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
    delete:
      tags:
      - Items
      summary: Deletes an item record
      parameters:
      - name: itemNo
        in: path
        description: The ItemNo of the Item 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'>SparePart_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: deleteItemsByItemNo
      x-operation-id-source: derived
  /Items/{itemNo}/history:
    get:
      tags:
      - Items
      summary: Gets history for a specific Item
      operationId: GetItemHistory
      parameters:
      - name: itemNo
        in: path
        description: The ItemNo 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 item
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '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 item with the supplied Item 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'>SparePart_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: []
  /Items/search:
    post:
      tags:
      - Items
      summary: Search for items Takes a SearchDefinition input, which can include filters and…
      operationId: SearchItems
      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.Item.Item'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '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'>SparePart</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: []
  /Items/searchCount:
    post:
      tags:
      - Items
      summary: Returns number of hits in a search for Items Takes a SearchDefinition input…
      operationId: SearchCountItems
      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'>SparePart</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: []
  /Items/searchIndex/{sparePartGuid}:
    post:
      tags:
      - Items
      summary: Get index of a record in a search for Items Takes a SearchDefinition input…
      operationId: SearchIndexItems
      parameters:
      - name: sparePartGuid
        in: path
        description: The item 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'>SparePart</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: []
  /Items/searchInfo:
    get:
      tags:
      - Items
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoItems
      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
  /Items/{itemNo}/force:
    delete:
      tags:
      - Items
      summary: Force deletes a item record Force deleting records may cause existing records…
      parameters:
      - name: itemNo
        in: path
        description: The ItemNo of the Item 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'>SparePart_ForceDelete</td><td style='border-bottom:none'>ForceDelete</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
      operationId: deleteItemsByItemNoForce
      x-operation-id-source: derived
  /Items/{itemNo}/warehouses:
    get:
      tags:
      - Items
      summary: Returns a list of warehouses on the Item
      operationId: GetItemWarehouses
      parameters:
      - name: itemNo
        in: path
        description: The Itemno to fetch warehouses for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the warehouses for the item
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemWarehouse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemWarehouse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemWarehouse'
        '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'>SparePart</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: []
  /Items/{itemNo}/adjuststock:
    post:
      tags:
      - Items
      summary: Performs a stock adjustment on the given item
      operationId: AdjustStock
      parameters:
      - name: itemNo
        in: path
        description: Item no of the item to undergo a stock adjustment
        required: true
        schema:
          type: string
      requestBody:
        description: The adjustment to make
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Stock.StockAdjustment'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Stock.StockAdjustment'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Stock.StockAdjustment'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Stock.StockAdjustment'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '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'>SparePartWarehouseTransaction</td><td style='border-bottom:none'>Function</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Items/{itemNo}/movestock:
    post:
      tags:
      - Items
      summary: Moves stock from one location to another
      operationId: MoveStock
      parameters:
      - name: itemNo
        in: path
        description: Item no of the item to undergo a stock adjustment
        required: true
        schema:
          type: string
      requestBody:
        description: The adjustment to make
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Stock.StockMovement'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Stock.StockMovement'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Stock.StockMovement'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Stock.StockMovement'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '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'>SparePartWarehouseTransaction</td><td style='border-bottom:none'>Function</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Items/{itemNo}/Suppliers:
    get:
      tags:
      - Items
      summary: Returns a list of Suppliers used for the Item
      operationId: GetItemSuppliers
      parameters:
      - name: itemNo
        in: path
        description: The ItemNo to fetch suppliers for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the suppliers for the Item
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
        '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'>SparePart</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: []
  /Items/searchitemsuppliers:
    post:
      tags:
      - Items
      summary: Returns a list of Suppliers used for the items sent with the body
      operationId: GetMultipleItemSuppliers
      requestBody:
        description: The ItemNos to fetch suppliers for
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          text/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
      responses:
        '200':
          description: Returns the suppliers for the Item
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
        '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'>SparePart</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: []
  /Items/{itemNo}/Suppliers/{supplierNo}:
    get:
      tags:
      - Items
      summary: Returns a specific Item Supplier
      operationId: GetItemSupplier
      parameters:
      - name: itemNo
        in: path
        description: The ItemNo
        required: true
        schema:
          type: string
      - name: supplierNo
        in: path
        description: The supplierNo to fetch
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the spare parts for the component
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.ItemSupplier'
        '404':
          description: If a item supplier with the supplied ItemNo 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'>SparePart</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: []
  /Items/{itemNo}/copy:
    get:
      tags:
      - Items
      summary: Copies an existing Item to a new object
      operationId: CopyItem
      parameters:
      - name: itemNo
        in: path
        description: The ItemNo of the item to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new Item object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Item.Item'
        '400':
          description: Returns a 

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