FieldEx Developer
developer notes

Update Product Qty in User Bin

The ProductQtyUpdateInUserBin API allows you to update the quantity of products in the user bin. The request body includes inventory item information, bin information, and other relevant information.

Method Endpoint
PUT {{endpoint}}/api/inventories/ext/adjust

Headers

Key Value
Content-Type application/json
Authorization Bearer{{token}}

Example Request

{
  "inventoryItemVMS": [
    {
        "id": 106,
        "inventoryNumber": "I-000037",
        "qty": 4,
        "reOrderPoint": null,
        "underStock": null,
        "notes": null,
        "product": {
          "externalId": null
        },
        "assets": null,
        "user": {
          "id": 4,
          "login": "sandeep@lavalabs.net"
        },
        "bin": {
          "id": 4,
          "binNumber": "BI-000004",
          "user": {
            "id": 4,
            "login": "sandeep@lavalabs.net"
          },
          "wareHouseLocationId": null,
          "qty": null,
          "externalId": null
        },
        "zone": null,
        "productMeasureUnit": null,
        "wareHouseLocation": null,
        "combinationName": null,
        "newQty": 29,
        "type": "USER",
        "qtyTransfer": 0,
        "assetName": null,
        "adjQty": 33,
        "newQtyIn": 29,
        "newQtyOut": null
    }
  ]    
}

Example Response

{SOME CODE}