post
https://{sitename}.mvpplant.com/ODataApi/v1/Parts('')/Return
Return a quantity of an existing part to inventory.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
POST Return
Return a quantity of an existing part to inventory.
POST /ODataApi/v1/Parts('{name}')/ReturnEndpoint
https://{sitename}.mvpplant.com/ODataApi/v1/Parts('{name}')/ReturnReplace:
{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 return. |
Request body fields
| Field | Data type | Required | Description |
|---|---|---|---|
WarehouseID | String | Yes | Warehouse where you return the part. |
StockLocation | String | Yes | Stock location where you return the part. |
Quantity | Decimal | Yes | Quantity to return. |
PeopleID | String | Yes | Person associated with the return transaction. |
ReturnFrom | String | Yes | Entity or source returning the part. |
ReturnType | String | Yes | Type of entity or source returning the part. |
FromAccount | String | Yes | Account used as the return source. |
ToAccount | String | Yes | Account receiving the returned quantity. |
Notes | String | Yes | Notes for the return transaction. |
DateTime | String | Yes | Date and time of the return transaction. |
Example request
{
"WarehouseID": "MAIN",
"StockLocation": "A-01",
"Quantity": 1,
"PeopleID": "JSMITH",
"ReturnFrom": "WO-1001",
"ReturnType": "WorkOrder",
"FromAccount": "Maintenance",
"ToAccount": "Inventory",
"Notes": "Returned unused part from work order",
"DateTime": "2026-06-22T10:30:00"
}Example endpoint
POST https://company.mvpplant.com/ODataApi/v1/Parts('PART-1001')/ReturnResponse
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 amount returned.- Send
DateTimein the date and time format expected by your MVP One environment.
