Invendor ItemQuantities API

The ItemQuantities API from Invendor — 3 operation(s) for itemquantities.

Operations 3

GET /v1/ItemQuantities Get item quantities for defined criteria
GET /v1/ItemQuantities/stockValue Get the stock value for location items
GET /api/v1/ItemQuantities/onhand Get locations' stock on-hand quantities

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/invendor-itemquantities-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

invendor-itemquantities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IO.Common Accounts Item Quantities API
  version: '1.0'
servers:
- url: https://api.invendor.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- OAuth2: []
tags:
- name: ItemQuantities
paths:
  /v1/ItemQuantities:
    get:
      tags:
      - ItemQuantities
      summary: Get item quantities for defined criteria
      parameters:
      - name: locationId
        in: query
        description: Limit warehouse
        schema:
          type: integer
          format: int32
      - name: itemId
        in: query
        description: Limit item
        schema:
          type: integer
          format: int32
      - name: wmsLocationId
        in: query
        description: Limit location address
        schema:
          type: string
      - name: itemBatch
        in: query
        description: Limit batch
        schema:
          type: string
      - name: Filter
        in: query
        schema:
          type: string
      - name: Page
        in: query
        schema:
          type: integer
          format: int32
      - name: PageSize
        in: query
        schema:
          type: integer
          format: int32
      - name: SortColumn
        in: query
        schema:
          type: string
      - name: SortOrder
        in: query
        schema:
          type: string
      - name: showZero
        in: query
        description: Flag to include positions with 0 qtys
        schema:
          type: boolean
          default: false
      - name: showOnlyIlpOnHand
        in: query
        description: Flag to exclude positions that are not set in location items parameters list
        schema:
          type: boolean
          default: false
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemQuantityGroupedResponsePagedResult'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/ItemQuantities/stockValue:
    get:
      tags:
      - ItemQuantities
      summary: Get the stock value for location items
      parameters:
      - name: locationId
        in: query
        description: Filter location ID
        schema:
          type: integer
          format: int32
      - name: itemId
        in: query
        description: Filter itemId
        schema:
          type: integer
          format: int32
      - name: wmsLocationId
        in: query
        description: Filter location address
        schema:
          type: string
      - name: itemBatch
        in: query
        description: ''
        schema:
          type: string
      - name: Filter
        in: query
        schema:
          type: string
      - name: Page
        in: query
        schema:
          type: integer
          format: int32
      - name: PageSize
        in: query
        schema:
          type: integer
          format: int32
      - name: SortColumn
        in: query
        schema:
          type: string
      - name: SortOrder
        in: query
        schema:
          type: string
      - name: showZero
        in: query
        description: Flag to include positions with 0 qtys
        schema:
          type: boolean
          default: false
      - name: showOnlyIlpOnHand
        in: query
        description: ''
        schema:
          type: boolean
          default: false
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemQuantityResponsePagedResult'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /api/v1/ItemQuantities/onhand:
    get:
      tags:
      - ItemQuantities
      summary: Get locations' stock on-hand quantities
      parameters:
      - name: item
        in: query
        schema:
          type: string
      - name: accountId
        in: query
        schema:
          type: integer
          format: int32
      - name: locationId
        in: query
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ItemQuantitiesDTO'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
components:
  schemas:
    ItemQuantityGroupedResponse:
      type: object
      properties:
        itemId:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
        code:
          type:
          - string
          - 'null'
        displayName:
          type:
          - string
          - 'null'
        displayCode:
          type:
          - string
          - 'null'
        onOrder:
          type: number
          format: double
        ordered:
          type: number
          format: double
        qty:
          type: number
          format: double
        inventDim:
          $ref: '#/components/schemas/InventDimResponse'
      additionalProperties: false
    ItemQuantityResponse:
      type: object
      properties:
        itemId:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
        code:
          type:
          - string
          - 'null'
        displayName:
          type:
          - string
          - 'null'
        displayCode:
          type:
          - string
          - 'null'
        onOrder:
          type: number
          format: double
        ordered:
          type: number
          format: double
        qty:
          type: number
          format: double
        minSalesQty:
          type: number
          format: double
        salesUnitId:
          type:
          - string
          - 'null'
        inventDim:
          $ref: '#/components/schemas/InventDimResponse'
      additionalProperties: false
    ItemQuantitiesDTO:
      type: object
      properties:
        locationId:
          type: integer
          format: int32
        location:
          type:
          - string
          - 'null'
        locationCompany:
          type:
          - string
          - 'null'
        itemId:
          type: integer
          format: int32
        item:
          type:
          - string
          - 'null'
        itemCode:
          type:
          - string
          - 'null'
        altItem:
          type:
          - string
          - 'null'
        altItemCode:
          type:
          - string
          - 'null'
        qty:
          type: number
          format: double
        vendor:
          type:
          - string
          - 'null'
        whAddress:
          type:
          - string
          - 'null'
        batchId:
          type:
          - string
          - 'null'
      additionalProperties: false
    InventDimResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        locationId:
          type:
          - integer
          - 'null'
          format: int32
        locationName:
          type:
          - string
          - 'null'
        wmsLocationId:
          type:
          - string
          - 'null'
        batchId:
          type:
          - string
          - 'null'
      additionalProperties: false
    Error:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
      additionalProperties: false
    ItemQuantityGroupedResponsePagedResult:
      type: object
      properties:
        pageSize:
          type: integer
          format: int32
          readOnly: true
        page:
          type: integer
          format: int32
          readOnly: true
        totalCount:
          type: integer
          format: int32
          readOnly: true
        filteredCount:
          type: integer
          format: int32
          readOnly: true
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ItemQuantityGroupedResponse'
          readOnly: true
      additionalProperties: false
    ItemQuantityResponsePagedResult:
      type: object
      properties:
        pageSize:
          type: integer
          format: int32
          readOnly: true
        page:
          type: integer
          format: int32
          readOnly: true
        totalCount:
          type: integer
          format: int32
          readOnly: true
        filteredCount:
          type: integer
          format: int32
          readOnly: true
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ItemQuantityResponse'
          readOnly: true
      additionalProperties: false
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://identity.scanbro.com/connect/authorize
          tokenUrl: https://identity.scanbro.com/connect/token
          scopes:
            io.common: default scope