post
https://{sitename}.mvpplant.com/ODataApi/v1/Parts('')/AdjustQty
Adjust the quantity for an existing part.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
POST Adjust Qty
Adjust the quantity for an existing part.
POST /ODataApi/v1/Parts('{name}')/AdjustQtyEndpoint
https://{sitename}.mvpplant.com/ODataApi/v1/Parts('{name}')/AdjustQtyReplace:
{sitename}with your MVP One site name.{name}with the part name or part ID.
Path parameter
| Parameter | Type | Required | Description |
|---|---|---|---|
name | String | Yes | Part name or part ID for the existing part to adjust. |
Request body fields
| Field | Data type | Required | Description |
|---|---|---|---|
WarehouseID | String | Yes | Warehouse where you adjust the part quantity. |
StockLocation | String | Yes | Stock location where you adjust the part quantity. |
Quantity | Decimal | Yes | Quantity to adjust. |
TransactionDate | String | Yes | Date of the adjustment transaction. |
ToAccount | String | No | Account receiving the adjustment. |
FromAccount | String | No | Account used as the adjustment source. |
Notes | String | No | Notes for the adjustment transaction. |
Example request
{
"WarehouseID": "MAIN",
"StockLocation": "A-01",
"Quantity": 5,
"TransactionDate": "2026-06-22",
"ToAccount": "Inventory",
"FromAccount": "Adjustments",
"Notes": "Cycle count adjustment"
}Example endpoint
POST https://company.mvpplant.com/ODataApi/v1/Parts('PART-1001')/AdjustQtyResponse
A successful request returns a Boolean value:
trueNotes
- The part must already exist before you call this endpoint.
- Use single quotes around the part name or part ID in the endpoint URL.
Quantityis the adjustment amount.- Send
TransactionDatein the date format expected by your MVP One environment.
