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…

POST Check Out

Check out a quantity of an existing part.

POST /ODataApi/v1/Parts('{name}')/CheckOut

Endpoint

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

Replace:

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

Path parameter

ParameterTypeRequiredDescription
nameStringYesPart name or part ID for the existing part to check out.

Request body fields

FieldData typeRequiredDescription
WarehouseIDStringYesWarehouse where you check out the part.
StockLocationStringYesStock location where you check out the part.
QuantityDecimalYesQuantity to check out.
ChargeToStringYesEntity receiving the checked-out part.
ChargeToTypeStringYesType of entity receiving the checked-out part.
PeopleIDStringYesPerson associated with the checkout transaction.
FromAccountStringYesAccount used as the checkout source.
ToAccountStringYesAccount receiving the checkout.
NotesStringYesNotes for the checkout transaction.
DateTimeStringYesDate 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')/CheckOut

Response

A successful request returns a Boolean value:

true

Notes

  • The part must already exist before you call this endpoint.
  • Use single quotes around the part name or part ID in the endpoint URL.
  • Quantity is the amount checked out.
  • Send DateTime in 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}')/Move

Endpoint

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

Replace:

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

Path parameter

ParameterTypeRequiredDescription
nameStringYesPart name or part ID for the existing part to move.

Request body fields

FieldData typeRequiredDescription
FromWarehouseIDStringYesWarehouse where you move the part from.
FromStockLocationStringYesStock location where you move the part from.
ToWarehouseIDStringYesWarehouse where you move the part to.
ToStockLocationStringYesStock location where you move the part to.
QuantityDecimalYesQuantity to move.
FromAccountStringYesAccount used as the move source.
ToAccountStringYesAccount receiving the moved quantity.
FromCostCenterStringYesCost center where you move the part from.
ToCostCenterStringYesCost center where you move the part 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 endpoint

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

Response

A successful request returns a Boolean value:

true

Notes

  • The part must already exist before you call this endpoint.
  • Use single quotes around the part name or part ID in the endpoint URL.
  • Quantity is the amount moved.
  • Send TransactionDate in the date format expected by your MVP One environment.
Path Params
string
required

The part name or part ID.

Body Params
string
required

Warehouse where the part is moved from.

string
required

Stock location where the part is moved from.

string
required

Warehouse where the part is moved to.

string
required

Stock location where the part is moved to.

number
required

Quantity to move.

string
required

Account used as the move source.

string
required

Account receiving the moved quantity.

string
required

Cost center where the part is moved from.

string
required

Cost center where the part is moved to.

string
required

Notes for the move transaction.

string
required

Date of the move transaction.

Response

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