Home / API Documentation

API Call for updating the WOs

Method: POST api/v1/WorkOrder/PostUpdateWorkOrder

Response Format:

application/json

Required Parameters Description Additional information
CompanyId
No documentation available.

Define this parameter in the request body.

ScheduleDate
No documentation available.

Define this parameter in the request body.

WoNumber
No documentation available.

Define this parameter in the request body.

RouteName
No documentation available.

Define this parameter in the request body.

InvoiceAmount
No documentation available.

Define this parameter in the request body.

ScheduleTime
No documentation available.

Define this parameter in the request body.

Duration
No documentation available.

Define this parameter in the request body.

Confirmed
No documentation available.

Define this parameter in the request body.

TimeRangeId
No documentation available.

Define this parameter in the request body.

JobInstructions
No documentation available.

Define this parameter in the request body.

application/json, text/json

Sample Request:
                        {
  "CompanyId": 1,
  "ScheduleDate": "2025-02-23T06:03:40.9969115+00:00",
  "WoNumber": 3,
  "RouteName": "sample string 4",
  "InvoiceAmount": 5.0,
  "ScheduleTime": 6,
  "Duration": 7,
  "Confirmed": true,
  "TimeRangeId": 1,
  "JobInstructions": [
    {
      "WoEventId": 1,
      "JobInstructions": "sample string 2"
    },
    {
      "WoEventId": 1,
      "JobInstructions": "sample string 2"
    }
  ]
};