post
https://{sitename}.mvpplant.com/ODataApi/v1/Parts('')/Move
Move a quantity of an existing part from one warehouse or stock location to another.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
POST Check Out
Check out a quantity of an existing part.
POST /ODataApi/v1/Parts('{name}')/CheckOutEndpoint
https://{sitename}.mvpplant.com/ODataApi/v1/Parts('{name}')/CheckOutReplace:
{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 check out. |
Request body fields
| Field | Data type | Required | Description |
|---|---|---|---|
WarehouseID | String | Yes | Warehouse where you check out the part. |
StockLocation | String | Yes | Stock location where you check out the part. |
Quantity | Decimal | Yes | Quantity to check out. |
ChargeTo | String | Yes | Entity receiving the checked-out part. |
ChargeToType | String | Yes | Type of entity receiving the checked-out part. |
PeopleID | String | Yes | Person associated with the checkout transaction. |
FromAccount | String | Yes | Account used as the checkout source. |
ToAccount | String | Yes | Account receiving the checkout. |
Notes | String | Yes | Notes for the checkout transaction. |
DateTime | String | Yes | Date and time of the checkout transaction. |
Example request
{
"WarehouseID": "MAIN",
"StockLocation": "A-01",
"Quantity": 2,
"ChargeTo": "WO-1001",
"ChargeToType": "WorkOrder",
"PeopleID": "JSMITH",
"FromAccount": "Inventory",
"ToAccount": "Maintenance",
"Notes": "Checked out for repair work order",
"DateTime": "2026-06-22T10:30:00"
}Example endpoint
POST https://company.mvpplant.com/ODataApi/v1/Parts('PART-1001')/CheckOutResponse
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 checked out.- Send
DateTimein the date and time format expected by your MVP One environment.
now for move
POST Move
Move a quantity of an existing part from one warehouse or stock location to another.
POST /ODataApi/v1/Parts('{name}')/MoveEndpoint
https://{sitename}.mvpplant.com/ODataApi/v1/Parts('{name}')/MoveReplace:
{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 move. |
Request body fields
| Field | Data type | Required | Description |
|---|---|---|---|
FromWarehouseID | String | Yes | Warehouse where you move the part from. |
FromStockLocation | String | Yes | Stock location where you move the part from. |
ToWarehouseID | String | Yes | Warehouse where you move the part to. |
ToStockLocation | String | Yes | Stock location where you move the part to. |
Quantity | Decimal | Yes | Quantity to move. |
FromAccount | String | Yes | Account used as the move source. |
ToAccount | String | Yes | Account receiving the moved quantity. |
FromCostCenter | String | Yes | Cost center where you move the part from. |
ToCostCenter | String | Yes | Cost center where you move the part to. |
Notes | String | Yes | Notes for the move transaction. |
TransactionDate | String | Yes | Date of the move transaction. |
Example request
{
"FromWarehouseID": "MAIN",
"FromStockLocation": "A-01",
"ToWarehouseID": "MAIN",
"ToStockLocation": "B-02",
"Quantity": 3,
"FromAccount": "Inventory",
"ToAccount": "Inventory",
"FromCostCenter": "Maintenance",
"ToCostCenter": "Production",
"Notes": "Moved parts to production stock location",
"TransactionDate": "2026-06-22"
}Example endpoint
POST https://company.mvpplant.com/ODataApi/v1/Parts('PART-1001')/MoveResponse
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 moved.- Send
TransactionDatein the date format expected by your MVP One environment.
