post
https://{sitename}.mvpplant.com/ODataApi/v1/Parts('')/CheckOut
Check out a quantity of an existing part.
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.
