GET api/v{version}/maintenancerequest

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

The requested API version

string

Required

Default value is 1.0

Body Parameters

None.

Response Information

Resource Description

Collection of MaintenanceJob
NameDescriptionTypeAdditional information
Description

string

None.

ExpectedCompletion

date

None.

Id

integer

None.

Location

string

None.

Recorded

date

None.

Service

string

None.

Status

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Description": "Broken Tap",
    "ExpectedCompletion": "2024-09-25T09:06:32.3933641+01:00",
    "Id": 33833,
    "Location": "The UNITE Group plc/East Midlands/Leicester/The Grange/USAF Mangement Ltd",
    "Recorded": "2024-09-18T09:06:32.3933641+01:00",
    "Service": "Termly Inspection",
    "Status": "New"
  },
  {
    "Description": "Mark on wall",
    "ExpectedCompletion": "2024-09-13T09:06:32.3933641+01:00",
    "Id": 33832,
    "Location": "The UNITE Group plc/M4 Corridor/Bath/Charlton Court/D/GROUND/Corridor",
    "Recorded": "2024-09-11T09:06:32.3933641+01:00",
    "Service": "Plastering",
    "Status": "Resolved"
  },
  {
    "Description": "No hot water",
    "ExpectedCompletion": "2024-09-13T09:06:32.3933641+01:00",
    "Id": 33831,
    "Location": "The UNITE Group plc/Yorkshire & NE/Newcastle/Stephenson House/Reception",
    "Recorded": "2024-09-11T09:06:32.3933641+01:00",
    "Service": "Heating",
    "Status": "Resolved"
  }
]

text/javascript

Sample:
[{"Description":"Broken Tap","ExpectedCompletion":"2024-09-25T09:06:32.3933641+01:00","Id":33833,"Location":"The UNITE Group plc/East Midlands/Leicester/The Grange/USAF Mangement Ltd","Recorded":"2024-09-18T09:06:32.3933641+01:00","Service":"Termly Inspection","Status":"New"},{"Description":"Mark on wall","ExpectedCompletion":"2024-09-13T09:06:32.3933641+01:00","Id":33832,"Location":"The UNITE Group plc/M4 Corridor/Bath/Charlton Court/D/GROUND/Corridor","Recorded":"2024-09-11T09:06:32.3933641+01:00","Service":"Plastering","Status":"Resolved"},{"Description":"No hot water","ExpectedCompletion":"2024-09-13T09:06:32.3933641+01:00","Id":33831,"Location":"The UNITE Group plc/Yorkshire & NE/Newcastle/Stephenson House/Reception","Recorded":"2024-09-11T09:06:32.3933641+01:00","Service":"Heating","Status":"Resolved"}]

application/xml, text/xml

Sample:
<ArrayOfMaintenanceJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNITE.External.API.Models">
  <MaintenanceJob>
    <Description>Broken Tap</Description>
    <ExpectedCompletion>2024-09-25T09:06:32.3933641+01:00</ExpectedCompletion>
    <Id>33833</Id>
    <Location>The UNITE Group plc/East Midlands/Leicester/The Grange/USAF Mangement Ltd</Location>
    <Recorded>2024-09-18T09:06:32.3933641+01:00</Recorded>
    <Service>Termly Inspection</Service>
    <Status>New</Status>
  </MaintenanceJob>
  <MaintenanceJob>
    <Description>Mark on wall</Description>
    <ExpectedCompletion>2024-09-13T09:06:32.3933641+01:00</ExpectedCompletion>
    <Id>33832</Id>
    <Location>The UNITE Group plc/M4 Corridor/Bath/Charlton Court/D/GROUND/Corridor</Location>
    <Recorded>2024-09-11T09:06:32.3933641+01:00</Recorded>
    <Service>Plastering</Service>
    <Status>Resolved</Status>
  </MaintenanceJob>
  <MaintenanceJob>
    <Description>No hot water</Description>
    <ExpectedCompletion>2024-09-13T09:06:32.3933641+01:00</ExpectedCompletion>
    <Id>33831</Id>
    <Location>The UNITE Group plc/Yorkshire &amp; NE/Newcastle/Stephenson House/Reception</Location>
    <Recorded>2024-09-11T09:06:32.3933641+01:00</Recorded>
    <Service>Heating</Service>
    <Status>Resolved</Status>
  </MaintenanceJob>
</ArrayOfMaintenanceJob>