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
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Move Part

Move a quantity of an existing part from one warehouse or stock location to another.

POST /ODataApi/v1/Parts('name')/Move

Endpoint

https://{sitename}.mvpplant.com/ODataApi/v1/Parts('{name}')/Move

Replace {sitename} with your MVP One site name and {name} with the part name or part ID.

Request body

Send the move details in the request body.

FieldTypeRequiredDescription
FromWarehouseIDStringYesWarehouse where the part is moved from.
FromStockLocationStringYesStock location where the part is moved from.
ToWarehouseIDStringYesWarehouse where the part is moved to.
ToStockLocationStringYesStock location where the part is moved to.
QuantityDecimalYesQuantity to move.
FromAccountStringYesAccount used as the source for the move.
ToAccountStringYesAccount receiving the moved quantity.
FromCostCenterStringYesCost center where the part is moved from.
ToCostCenterStringYesCost center where the part is moved to.
NotesStringYesNotes for the move transaction.
TransactionDateStringYesDate 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 URL

https://company.mvpplant.com/ODataApi/v1/Parts('PART-1001')/Move

Response

Returns a Boolean value.

true

Notes

  • Use this endpoint to move a quantity of an existing part.
  • The part must already exist before you call this endpoint.
  • Use single quotes around the part name or part ID in the URL.
  • Quantity should be the amount moved.
  • TransactionDate should use the date format expected by your MVP One environment.
Path Params
string
required

Part name or part ID.

Body Params
string
required
string
required
string
required
string
required
number
required
string
string
string
string
string
string
required
Response

Language
Credentials
:
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json