GET API/JobTrak/GetRouteExceptions?routeType={routeType}&startDate={startDate}&endDate={endDate}
Get list of route exceptions
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| routeType |
The route type ("D" = Domestic, "T" = Trade) |
string |
Required |
| startDate |
The start date range |
date |
Required |
| endDate |
The end date range |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Waste Route Exceptions
Collection of WasteRouteActivityEvent| Name | Description | Type | Additional information |
|---|---|---|---|
| WasteRouteName |
The route identifier |
string |
None. |
| LoginID |
The Login ID of the driver/vehicle |
string |
None. |
| EventType |
The event type (1 = Delay, 2 = Exception) |
WasteRouteActivityEventType |
None. |
| EventDescription |
The description of the event |
string |
None. |
| Timestamp |
Date and time the event was recorded |
date |
None. |
| PropertyName |
Name of the property the event was recorded on |
string |
None. |
| StreetName |
Street name |
string |
None. |
| Postcode |
Postcode |
string |
None. |
| UPRN |
URPN of the property if the route is domestic |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"WasteRouteName": "sample string 1",
"LoginID": "sample string 2",
"EventType": 1,
"EventDescription": "sample string 3",
"Timestamp": "2025-12-14T18:39:57.5610925+00:00",
"PropertyName": "sample string 5",
"StreetName": "sample string 6",
"Postcode": "sample string 7",
"UPRN": "sample string 8"
},
{
"WasteRouteName": "sample string 1",
"LoginID": "sample string 2",
"EventType": 1,
"EventDescription": "sample string 3",
"Timestamp": "2025-12-14T18:39:57.5610925+00:00",
"PropertyName": "sample string 5",
"StreetName": "sample string 6",
"Postcode": "sample string 7",
"UPRN": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfWasteRouteActivityEvent xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<WasteRouteActivityEvent>
<WasteRouteName>sample string 1</WasteRouteName>
<LoginID>sample string 2</LoginID>
<EventType>Delay</EventType>
<EventDescription>sample string 3</EventDescription>
<Timestamp>2025-12-14T18:39:57.5610925+00:00</Timestamp>
<PropertyName>sample string 5</PropertyName>
<StreetName>sample string 6</StreetName>
<Postcode>sample string 7</Postcode>
<UPRN>sample string 8</UPRN>
</WasteRouteActivityEvent>
<WasteRouteActivityEvent>
<WasteRouteName>sample string 1</WasteRouteName>
<LoginID>sample string 2</LoginID>
<EventType>Delay</EventType>
<EventDescription>sample string 3</EventDescription>
<Timestamp>2025-12-14T18:39:57.5610925+00:00</Timestamp>
<PropertyName>sample string 5</PropertyName>
<StreetName>sample string 6</StreetName>
<Postcode>sample string 7</Postcode>
<UPRN>sample string 8</UPRN>
</WasteRouteActivityEvent>
</ArrayOfWasteRouteActivityEvent>