Skip to main content

Update Inventory by Id

PATCH 

/inventory/id/:id

This endpoint enables updating inventory record by it's unique id.

Available update fields

NameRequired
quantity (integer)no
costPrice (integer)no
nextDeliveryDate (date)no
notes (string)no

dateModified is always updated with the current date and time.

warehouseId and location cannot be updated.

If product stock is moved to a different warehouse or location, old inventory record should be updated with 0 quantity, then create a new record with the new warehouseId and/or location

Request

Path Parameters

    id stringrequired

    Inventory record Id

Body

    costPrice number
    nextDeliveryDate string
    notes string
    quantity number

Responses

Update Inventory by Id - 200

Response Headers

  • Connection

    string

  • Content-Length

    string

  • Date

    string

  • Keep-Alive

    string

  • Return-Format

    string

Schema

    data

    object

    companyId number
    costPrice number
    dateModified string
    id number
    location string
    nextDeliveryDate string
    notes string
    productId number
    quantity number
    sku string
    supplier string
    supplierCode string
    usergroupId number
    warehouseId number
    messages string[]
    total number
Loading...