GET API/JobTrak/UPRNExceptions/{uprn}
Exceptions for a given UPRN
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| uprn |
UPRN to get exceptions of |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UPRNException| Name | Description | Type | Additional information |
|---|---|---|---|
| UPRN |
UPRN of Address |
string |
None. |
| RouteIdentifier |
Route Identifier |
string |
None. |
| PropertyAddress |
Property Address (Including postcode) |
string |
None. |
| Exception |
Exception recorded |
string |
None. |
| Timestamp |
Date/Time when the exception was recorded |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"UPRN": "sample string 1",
"RouteIdentifier": "sample string 2",
"PropertyAddress": "sample string 3",
"Exception": "sample string 4",
"Timestamp": "2025-12-14T17:45:35.7239748+00:00"
},
{
"UPRN": "sample string 1",
"RouteIdentifier": "sample string 2",
"PropertyAddress": "sample string 3",
"Exception": "sample string 4",
"Timestamp": "2025-12-14T17:45:35.7239748+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfUPRNException xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UPRNException>
<UPRN>sample string 1</UPRN>
<RouteIdentifier>sample string 2</RouteIdentifier>
<PropertyAddress>sample string 3</PropertyAddress>
<Exception>sample string 4</Exception>
<Timestamp>2025-12-14T17:45:35.7239748+00:00</Timestamp>
</UPRNException>
<UPRNException>
<UPRN>sample string 1</UPRN>
<RouteIdentifier>sample string 2</RouteIdentifier>
<PropertyAddress>sample string 3</PropertyAddress>
<Exception>sample string 4</Exception>
<Timestamp>2025-12-14T17:45:35.7239748+00:00</Timestamp>
</UPRNException>
</ArrayOfUPRNException>