POST

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

POST Add Estimated Labor

Add an estimated labor record to an existing work order.

POST /ODataApi/v1/WorkOrders('{name}')/AddEstimatedLabor

Endpoint

https://{sitename}.mvpplant.com/ODataApi/v1/WorkOrders('{name}')/AddEstimatedLabor

Replace:

  • {sitename} with your MVP One site name.
  • {name} with the work order name or identifier.

Path parameter

ParameterData typeRequiredDescription
nameStringYesWork order name or identifier for the work order receiving the estimated labor record.

Request body fields

FieldData typeRequiredDescription
WorkOrderIDStringYesIdentifier of the work order associated with the estimated labor record.
CraftStringYesCraft assigned to the estimated labor record.
EstimatedFinishDateDateTimeOffsetYesEstimated finish date and time for the labor.
EstimatedHoursDecimal(9,3)YesEstimated regular labor hours.
EstimatedOTHoursDecimal(9,3)NoEstimated overtime labor hours.
EstimatedStartDateDateTimeOffsetNoEstimated start date and time for the labor.
UserIDStringYesIdentifier of the user assigned to the estimated labor record.

Example request

{
  "WorkOrderID": "WO-1001",
  "Craft": "Electrician",
  "EstimatedStartDate": "2026-06-22T08:00:00",
  "EstimatedFinishDate": "2026-06-22T12:00:00",
  "EstimatedHours": 4.0,
  "EstimatedOTHours": 0.0,
  "UserID": "JSMITH"
}

Example endpoint

POST https://company.mvpplant.com/ODataApi/v1/WorkOrders('WO-1001')/AddEstimatedLabor

Response

The response type is not specified in the available endpoint metadata.

Notes

  • The work order must already exist before you call this endpoint.
  • Use single quotes around the work order name or identifier in the endpoint URL.
  • The request body supports only fields marked for POST: WorkOrderID, Craft, EstimatedFinishDate, EstimatedHours, EstimatedOTHours, EstimatedStartDate, and UserID.
  • Rate and OTRate are available in estimated labor records but are not marked as POST fields.
Path Params
string
required
Response

Language
Credentials
:
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here!