Home / API Documentation

Get List of WorkOrders by Scheduled Date Range

Method: GET api/v1/WorkOrder/GetWorkOrderListByScheduleDateRange?fromdate={fromdate}&todate={todate}&page={page}&pagelimit={pagelimit}

Response Format:

application/json

Required Parameters Description Additional information
fromdate
From Date Scheduled

Define this parameter in the request URI.

todate
To Date Scheduled

Define this parameter in the request URI.

page
page number, starts at 1. Defaults to 1. Pagination is always applied.

Define this parameter in the request URI.

pagelimit
page size. Defaults to MaxPageLimit. Values outside [1..MaxPageLimit] are clamped to MaxPageLimit.

Define this parameter in the request URI.

application/json, text/json

Sample Response:
                        [
  {
    "workorderid": 1,
    "accountid": 2,
    "accountnum": "sample string 3"
  },
  {
    "workorderid": 1,
    "accountid": 2,
    "accountnum": "sample string 3"
  }
];