GET

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

GET Work Order Estimated Labor

Retrieve estimated labor records for work orders.

GET /ODataApi/v1/GetWorkOrderEstimatedLabor

Endpoint

https://{sitename}.mvpplant.com/ODataApi/v1/GetWorkOrderEstimatedLabor

Replace {sitename} with your MVP One site name.

Available fields

FieldData typeDescription
WorkOrderIDStringIdentifier of the work order associated with the estimated labor record.
CraftStringCraft assigned to the estimated labor record.
EstimatedFinishDateDateTimeOffsetEstimated finish date and time for the labor.
EstimatedHoursDecimal(9,3)Estimated regular labor hours.
EstimatedOTHoursDecimal(9,3)Estimated overtime labor hours.
EstimatedStartDateDateTimeOffsetEstimated start date and time for the labor.
OTRateDecimal(18,3)Overtime rate.
RateDecimal(18,3)Regular labor rate.
UserIDStringIdentifier of the user assigned to the estimated labor record.
CreatedByStringUser who created the record.
DateCreatedDateTimeOffsetDate and time the record was created.
EditedByStringUser who last edited the record.
DateEditedDateTimeOffsetDate and time the record was last edited.

Example endpoint

GET https://company.mvpplant.com/ODataApi/v1/GetWorkOrderEstimatedLabor

Optional OData query examples

Return estimated labor for one work order

GET https://{sitename}.mvpplant.com/ODataApi/v1/GetWorkOrderEstimatedLabor?$filter=WorkOrderID eq 'WO-1001'

Return selected fields

GET https://{sitename}.mvpplant.com/ODataApi/v1/GetWorkOrderEstimatedLabor?$select=WorkOrderID,Craft,UserID,EstimatedHours,EstimatedStartDate,EstimatedFinishDate

Return the first 10 records

GET https://{sitename}.mvpplant.com/ODataApi/v1/GetWorkOrderEstimatedLabor?$top=10

Sort records by estimated start date

GET https://{sitename}.mvpplant.com/ODataApi/v1/GetWorkOrderEstimatedLabor?$orderby=EstimatedStartDate desc

Notes

  • Use single quotes around string values in $filter expressions.
  • OData filter values are case-sensitive.
  • Use $select to return only the fields your application needs.
  • EstimatedHours and EstimatedOTHours use Decimal(9,3) precision.
  • Rate and OTRate use Decimal(18,3) precision.
Response

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