Home / API Documentation

Get List of WorkOrders by Routename and Scheduled Date Range

Method: GET api/v1/WorkOrder/GetWorkOrderListByRouteByScheduleDateRange?routename={routename}&from={from}&to={to}&page={page}

Response Format:

application/json

Required Parameters Description Additional information
routename

Define this parameter in the request URI.

from

Define this parameter in the request URI.

to

Define this parameter in the request URI.

page

Define this parameter in the request URI.

application/json, text/json

Sample Response:
                        [
  {
    "scheduledate": "sample string 1",
    "eventname": "sample string 2",
    "programname": "sample string 3",
    "wonumber": "sample string 4",
    "routeid": 5,
    "routename": "sample string 6",
    "invoiceamount": 7.0,
    "productionamount": 8.0,
    "commissionamount": 9.0
  },
  {
    "scheduledate": "sample string 1",
    "eventname": "sample string 2",
    "programname": "sample string 3",
    "wonumber": "sample string 4",
    "routeid": 5,
    "routename": "sample string 6",
    "invoiceamount": 7.0,
    "productionamount": 8.0,
    "commissionamount": 9.0
  }
];