FieldEx Developer
developer notes

Remove Product from User Bin

The ProductRemoveFromUserBin API allows you to remove a product from a User Bin.

Method Endpoint
DELETE {{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}