Virto Commerce Inventory API

Simplify inventory management functionality

Operations 16

POST /api/inventory/search Search inventories by given criteria #
POST /api/inventory/product/search Search inventories by given criteria #
POST /api/inventory/fulfillmentcenters/search Search fulfillment centers registered in the system #
GET /api/inventory/fulfillmentcenters/{id} Get fulfillment center by id #
PATCH /api/inventory/fulfillmentcenters/{id} Partial update for the specified FulfillmentCenter by id #
GET /api/inventory/fulfillmentcenters/outer/{outerId} Get fulfillment center by outer id #
POST /api/inventory/fulfillmentcenters/plenty Get fulfillment centers by ids #
PUT /api/inventory/fulfillmentcenters Save fulfillment center #
DELETE /api/inventory/fulfillmentcenters Delete fulfillment centers registered in the system #
POST /api/inventory/fulfillmentcenters/batch Save fulfillment centers #
GET /api/inventory/products/{productId} Get inventories of product #
PUT /api/inventory/products/{productId} Update inventory #
GET /api/inventory/products Get inventories of products #
POST /api/inventory/products/plenty Get inventories of products #
PUT /api/inventory/plenty Upsert inventories #
PATCH /api/inventory/{id} Partial update for the specified inventory of product by id #

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/virto-commerce-inventory-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

virto-commerce-inventory-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VirtoCommerce.Cart Catalog Inventory API
  version: v1
  description: Easily manage your products, categories, variations, and properties
servers:
- url: https://virtostart-demo-admin.govirto.com/api
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Inventory
  description: Simplify inventory management functionality
paths:
  /api/inventory/search:
    post:
      tags:
      - Inventory
      summary: Search inventories by given criteria
      operationId: InventoryModule_SearchInventories
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/InventorySearchCriteria'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/InventorySearchCriteria'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/InventorySearchCriteria'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/InventoryInfoSearchResult'
            application/json:
              schema:
                $ref: '#/components/schemas/InventoryInfoSearchResult'
            text/json:
              schema:
                $ref: '#/components/schemas/InventoryInfoSearchResult'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:read
      - api_key:
        - inventory:read
      - api_key_header:
        - inventory:read
      - http-signature:
        - inventory:read
      - basic:
        - inventory:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/product/search:
    post:
      tags:
      - Inventory
      summary: Search inventories by given criteria
      operationId: InventoryModule_SearchProductInventories
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ProductInventorySearchCriteria'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ProductInventorySearchCriteria'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ProductInventorySearchCriteria'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/InventoryInfoSearchResult'
            application/json:
              schema:
                $ref: '#/components/schemas/InventoryInfoSearchResult'
            text/json:
              schema:
                $ref: '#/components/schemas/InventoryInfoSearchResult'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:read
      - api_key:
        - inventory:read
      - api_key_header:
        - inventory:read
      - http-signature:
        - inventory:read
      - basic:
        - inventory:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/fulfillmentcenters/search:
    post:
      tags:
      - Inventory
      summary: Search fulfillment centers registered in the system
      operationId: InventoryModule_SearchFulfillmentCenters
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/FulfillmentCenterSearchCriteria'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/FulfillmentCenterSearchCriteria'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/FulfillmentCenterSearchCriteria'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FulfillmentCenterSearchResult'
            application/json:
              schema:
                $ref: '#/components/schemas/FulfillmentCenterSearchResult'
            text/json:
              schema:
                $ref: '#/components/schemas/FulfillmentCenterSearchResult'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:fulfillment:read
      - api_key:
        - inventory:fulfillment:read
      - api_key_header:
        - inventory:fulfillment:read
      - http-signature:
        - inventory:fulfillment:read
      - basic:
        - inventory:fulfillment:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/fulfillmentcenters/{id}:
    get:
      tags:
      - Inventory
      summary: Get fulfillment center by id
      operationId: InventoryModule_GetFulfillmentCenter
      parameters:
      - name: id
        in: path
        description: fulfillment center id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
            application/json:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
            text/json:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:fulfillment:read
      - api_key:
        - inventory:fulfillment:read
      - api_key_header:
        - inventory:fulfillment:read
      - http-signature:
        - inventory:fulfillment:read
      - basic:
        - inventory:fulfillment:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
    patch:
      tags:
      - Inventory
      summary: Partial update for the specified FulfillmentCenter by id
      operationId: InventoryModule_PatchFulfillmentCenter
      parameters:
      - name: id
        in: path
        description: FulfillmentCenter id
        required: true
        schema:
          type: string
      requestBody:
        description: JsonPatchDocument object with fields to update
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Operation'
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Operation'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Operation'
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:fulfillment:edit
      - api_key:
        - inventory:fulfillment:edit
      - api_key_header:
        - inventory:fulfillment:edit
      - http-signature:
        - inventory:fulfillment:edit
      - basic:
        - inventory:fulfillment:edit
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/fulfillmentcenters/outer/{outerId}:
    get:
      tags:
      - Inventory
      summary: Get fulfillment center by outer id
      operationId: InventoryModule_GetFulfillmentCenterByOuterId
      parameters:
      - name: outerId
        in: path
        description: fulfillment center outer id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
            application/json:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
            text/json:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:fulfillment:read
      - api_key:
        - inventory:fulfillment:read
      - api_key_header:
        - inventory:fulfillment:read
      - http-signature:
        - inventory:fulfillment:read
      - basic:
        - inventory:fulfillment:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/fulfillmentcenters/plenty:
    post:
      tags:
      - Inventory
      summary: Get fulfillment centers by ids
      operationId: InventoryModule_GetFulfillmentCenters
      requestBody:
        description: fulfillment center ids
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                type: string
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FulfillmentCenter'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FulfillmentCenter'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FulfillmentCenter'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:fulfillment:read
      - api_key:
        - inventory:fulfillment:read
      - api_key_header:
        - inventory:fulfillment:read
      - http-signature:
        - inventory:fulfillment:read
      - basic:
        - inventory:fulfillment:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/fulfillmentcenters:
    put:
      tags:
      - Inventory
      summary: Save fulfillment center
      operationId: InventoryModule_SaveFulfillmentCenter
      requestBody:
        description: fulfillment center
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/FulfillmentCenter'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/FulfillmentCenter'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/FulfillmentCenter'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
            application/json:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
            text/json:
              schema:
                $ref: '#/components/schemas/FulfillmentCenter'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:fulfillment:edit
      - api_key:
        - inventory:fulfillment:edit
      - api_key_header:
        - inventory:fulfillment:edit
      - http-signature:
        - inventory:fulfillment:edit
      - basic:
        - inventory:fulfillment:edit
      x-virtocommerce-module-id: VirtoCommerce.Inventory
    delete:
      tags:
      - Inventory
      summary: Delete fulfillment centers registered in the system
      operationId: InventoryModule_DeleteFulfillmentCenters
      parameters:
      - name: ids
        in: query
        schema:
          type: array
          items:
            type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:fulfillment:delete
      - api_key:
        - inventory:fulfillment:delete
      - api_key_header:
        - inventory:fulfillment:delete
      - http-signature:
        - inventory:fulfillment:delete
      - basic:
        - inventory:fulfillment:delete
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/fulfillmentcenters/batch:
    post:
      tags:
      - Inventory
      summary: Save fulfillment centers
      operationId: InventoryModule_SaveFulfillmentCenters
      requestBody:
        description: fulfillment centers
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/FulfillmentCenter'
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/FulfillmentCenter'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/FulfillmentCenter'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FulfillmentCenter'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FulfillmentCenter'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FulfillmentCenter'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:fulfillment:edit
      - api_key:
        - inventory:fulfillment:edit
      - api_key_header:
        - inventory:fulfillment:edit
      - http-signature:
        - inventory:fulfillment:edit
      - basic:
        - inventory:fulfillment:edit
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/products/{productId}:
    get:
      tags:
      - Inventory
      summary: Get inventories of product
      description: Get inventories of product for each fulfillment center.
      operationId: InventoryModule_GetProductInventories
      parameters:
      - name: productId
        in: path
        description: Product id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:read
      - api_key:
        - inventory:read
      - api_key_header:
        - inventory:read
      - http-signature:
        - inventory:read
      - basic:
        - inventory:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
    put:
      tags:
      - Inventory
      summary: Update inventory
      description: Update given inventory of product.
      operationId: InventoryModule_UpdateProductInventory
      parameters:
      - name: productId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        description: Inventory to update
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/InventoryInfo'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/InventoryInfo'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/InventoryInfo'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/InventoryInfo'
            application/json:
              schema:
                $ref: '#/components/schemas/InventoryInfo'
            text/json:
              schema:
                $ref: '#/components/schemas/InventoryInfo'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:update
      - api_key:
        - inventory:update
      - api_key_header:
        - inventory:update
      - http-signature:
        - inventory:update
      - basic:
        - inventory:update
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/products:
    get:
      tags:
      - Inventory
      summary: Get inventories of products
      description: Get inventory of products for each fulfillment center.
      operationId: InventoryModule_GetProductInventories
      parameters:
      - name: ids
        in: query
        description: Products ids
        schema:
          type: array
          items:
            type: string
      - name: fulfillmentCenterIds
        in: query
        description: The fulfillment centers that will be used to filter product inventories
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:read
      - api_key:
        - inventory:read
      - api_key_header:
        - inventory:read
      - http-signature:
        - inventory:read
      - basic:
        - inventory:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/products/plenty:
    post:
      tags:
      - Inventory
      summary: Get inventories of products
      description: Get inventory of products for each fulfillment center.
      operationId: InventoryModule_GetProductsInventoriesByPlentyIds
      parameters:
      - name: fulfillmentCenterIds
        in: query
        description: The fulfillment centers that will be used to filter product inventories
        schema:
          type: array
          items:
            type: string
      requestBody:
        description: Products ids
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                type: string
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InventoryInfo'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:read
      - api_key:
        - inventory:read
      - api_key_header:
        - inventory:read
      - http-signature:
        - inventory:read
      - basic:
        - inventory:read
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/plenty:
    put:
      tags:
      - Inventory
      summary: Upsert inventories
      description: Upsert (add or update) given inventories.
      operationId: InventoryModule_UpsertProductInventories
      requestBody:
        description: Inventories to upsert
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/InventoryInfo'
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/InventoryInfo'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/InventoryInfo'
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:update
      - api_key:
        - inventory:update
      - api_key_header:
        - inventory:update
      - http-signature:
        - inventory:update
      - basic:
        - inventory:update
      x-virtocommerce-module-id: VirtoCommerce.Inventory
  /api/inventory/{id}:
    patch:
      tags:
      - Inventory
      summary: Partial update for the specified inventory of product by id
      operationId: InventoryModule_PatchProductInventory
      parameters:
      - name: id
        in: path
        description: Inventory id
        required: true
        schema:
          type: string
      requestBody:
        description: JsonPatchDocument object with fields to update
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Operation'
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Operation'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Operation'
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - inventory:update
      - api_key:
        - inventory:update
      - api_key_header:
        - inventory:update
      - http-signature:
        - inventory:update
      - basic:
        - inventory:update
      x-virtocommerce-module-id: VirtoCommerce.Inventory
components:
  schemas:
    FulfillmentCenterSearchResult:
      type: object
      properties:
        totalCount:
          type: integer
          format: int32
        results:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FulfillmentCenter'
      additionalProperties: false
    AddressType:
      enum:
      - Undefined
      - Billing
      - Shipping
      - BillingAndShipping
      - Pickup
      type: string
    ProductInventorySearchCriteria:
      type: object
      properties:
        productId:
          type:
          - string
          - 'null'
        productIds:
          type:
          - array
          - 'null'
          items:
            type: string
        withInventoryOnly:
          type: boolean
        responseGroup:
          type:
          - string
          - 'null'
        objectType:
          type:
          - string
          - 'null'
        objectTypes:
          type:
          - array
          - 'null'
          items:
            type: string
        objectIds:
          type:
          - array
          - 'null'
          items:
            type: string
        keyword:
          type:
          - string
          - 'null'
        searchPhrase:
          type:
          - string
          - 'null'
        languageCode:
          type:
          - string
          - 'null'
        sort:
          type:
          - string
          - 'null'
        sortInfos:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SortInfo'
          readOnly: true
        skip:
          type: integer
          format: int32
        take:
          type: integer
          format: int32
      additionalProperties: false
    InventoryInfoSearchResult:
      type: object
      properties:
        totalCount:
          type: integer
          format: int32
        results:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/InventoryInfo'
      additionalProperties: false
    DynamicObjectProperty:
      type: object
      properties:
        objectId:
          type:
          - string
          - 'null'
        values:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/DynamicPropertyObjectValue'
        name:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        objectType:
          type:
          - string
          - 'null'
        isArray:
          type: boolean
        isDictionary:
          type: boolean
        isMultilingual:
          type: boolean
        isRequired:
          type: boolean
        displayOrder:
          type:
          - integer
          - 'null'
          format: int32
        valueType:
          allOf:
          - $ref: '#/components/schemas/DynamicPropertyValueType'
        displayNames:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/DynamicPropertyName'
        createdDate:
          type: string
          format: date-time
        modifiedDate:
          type:
          - string
          - 'null'
          format: date-time
        createdBy:
          maxLength: 64
          minLength: 0
          type:
          - string
          - 'null'
        modifiedBy:
          maxLength: 64
          minLength: 0
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
      additionalProperties: false
    DynamicPropertyObjectValue:
      type: object
      properties:
        objectType:
          type:
          - string
          - 'null'
        objectId:
          type:
          - string
          - 'null'
        locale:
          type:
          - string
          - 'null'
        value:
          type:
          - object
          - 'null'
        valueId:
          type:
          - string
          - 'null'
        valueType:
          allOf:
          - $ref: '#/components/schemas/DynamicPropertyValueType'
        propertyId:
          type:
          - string
          - 'null'
        propertyName:
          type:
          - string
          - 'null'
      additionalProperties: false
    InventoryInfo:
      type: object
      properties:
        fulfillmentCenterId:
          type:
          - string
          - 'null'
        fulfillmentCenterName:
          type:
          - string
          - 'null'
        fulfillmentCenter:
          allOf:
          - $ref: '#/components/schemas/FulfillmentCenter'
        productId:
          type:
          - string
          - 'null'
        inStockQuantity:
          type: integer
          format: int64
        reservedQuantity:
          type: integer
          format: int64
        reorderMinQuantity:
          type: integer
          format: int64
        preorderQuantity:
          type: integer
          format: int64
        backorderQuantity:
          type: integer
          format: int64
        allowBackorder:
          type: boolean
        allowPreorder:
          type: boolean
        inTransit:
          type: integer
          format: int64
        preorderAvailabilityDate:
          type:
          - string
          - 'null'
          format: date-time
        backorderAvailabilityDate:
          type:
          - string
          - 'null'
          format: date-time
        status:
          allOf:
          - $ref: '#/components/schemas/InventoryStatus'
        outerId:
          type:
          - string
          - 'null'
        createdDate:
          type: string
          format: date-time
        modifiedDate:
          type:
          - string
          - 'null'
          format: date-time
        createdBy:
          maxLength: 64
          minLength: 0
          type:
          - string
          - 'null'
        modifiedBy:
          maxLength: 64
          minLength: 0
          type:
          - string
          - 'null'
        id:
          type:
          - string
          - 'null'
      additionalProperties: false
    InventoryStatus:
      enum:
      - Disabled
      - Enabled
      - Ignored
      type: string
    SortInfo:
      type: object
      properties:
        sortColumn:
          type:
          - string
          - 'null'
        sortDirection:
          allOf:
          - $ref: '#/components/schemas/SortDirection'
      additionalProperties: false
    InventoryAddress:
      type: object
      properties:
        addressType:
          allOf:
          - $ref: '#/components/schemas/AddressType'
        key:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        organization:
          type:
          - string
          - 'null'
        countryCode:
          type:
          - string
          - 'null'
        countryName:
          type:
          - string
          - 'null'
        city:
          type:
          - string
          - 'null'
        postalCode:
          type:
          - string
          - 'null'
        zip:
          type:
          - string
          - 'null'
        line1:
          type:
          - string
          - 'null'
        line2:
          type:
          - string
          - 'null'
        regionId:
          type:
          - string
          - 'null'
        regionName:
          type:
          - string
          - 'null'
        firstName:
          type:
          - string
          - 'null'
        middleName:
          type:
          - string
          - 'null'
        lastName:
          type:
          - string
          - 'null'
        phone:
          type:
          - string
          - 'null'
        email:
          type:
          - string
          - 'null'
        outerId:
          type:
          - string
          - 'null'
        isDefault:
          type: boolean
        description:
          type:
          - string
          - 'null'
      additionalProperties: false
    FulfillmentCenterSearchCriteria:
      type: object
      properties:
        outerId:
          type:
          - string
          - 'null'
        organizationId:
          type:
          - string
          - 'null'
        responseGroup:
          type:
          - string
          - 'null'
        objectType:
          type:
          - string
          - 'null'
        objectTypes:
          type:
          - array
          - 'null'
          items:
            type: string
        objectIds:
          type:
          - array
          - 'null'
          items:
            type: string
        keyword:
          type:
          - string
          - 'null'
        searchPhrase:
          type:
          - string
          - 'null'
        languageCode:
          type:
          - string
          - 'null'
        sort:
          type:
          - string
          - 'null'
        sortInfos:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SortInfo'
          readOnly: true
        skip:
          type:

# --- truncated at 32 KB (36 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/virto-commerce/refs/heads/main/openapi/virto-commerce-inventory-api-openapi.yml