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 UPRNExceptionName | Description | Type | Additional information |
---|---|---|---|
UPRN |
UPRN of Address |
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", "PropertyAddress": "sample string 2", "Exception": "sample string 3", "Timestamp": "2025-04-29T18:19:42.5532656+01:00" }, { "UPRN": "sample string 1", "PropertyAddress": "sample string 2", "Exception": "sample string 3", "Timestamp": "2025-04-29T18:19:42.5532656+01: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> <PropertyAddress>sample string 2</PropertyAddress> <Exception>sample string 3</Exception> <Timestamp>2025-04-29T18:19:42.5532656+01:00</Timestamp> </UPRNException> <UPRNException> <UPRN>sample string 1</UPRN> <PropertyAddress>sample string 2</PropertyAddress> <Exception>sample string 3</Exception> <Timestamp>2025-04-29T18:19:42.5532656+01:00</Timestamp> </UPRNException> </ArrayOfUPRNException>