GET apioauth/matrixv2/services/{serviceId}/maintenanceinformation
Get service maintenance information
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
serviceId |
The service id queried |
unsigned integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A ServiceMaintenanceResponse
ServiceMaintenanceResponseName | Description | Type | Additional information |
---|---|---|---|
serviceId | integer |
None. |
|
maintenanceInformation | Collection of MaintenanceInformation |
None. |
Response Formats
application/json, text/json
Sample:
{ "serviceId": 1, "maintenanceInformation": [ { "id": 1, "uploadMobSurvey": true, "valveAccessible": true, "engineerName": "sample string 4", "notes": "sample string 5", "buzzerWorking": true, "timestamp": "2025-04-27T16:37:12.5994795+00:00" }, { "id": 1, "uploadMobSurvey": true, "valveAccessible": true, "engineerName": "sample string 4", "notes": "sample string 5", "buzzerWorking": true, "timestamp": "2025-04-27T16:37:12.5994795+00:00" } ] }
application/xml, text/xml
Sample:
<ServiceMaintenanceResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ServiceId>1</ServiceId> <MaintenanceInformation> <MaintenanceInformation> <Id>1</Id> <UploadMobSurvey>true</UploadMobSurvey> <ValveAccessible>true</ValveAccessible> <EngineerName>sample string 4</EngineerName> <Notes>sample string 5</Notes> <BuzzerWorking>true</BuzzerWorking> <Timestamp>2025-04-27T16:37:12.5994795+00:00</Timestamp> </MaintenanceInformation> <MaintenanceInformation> <Id>1</Id> <UploadMobSurvey>true</UploadMobSurvey> <ValveAccessible>true</ValveAccessible> <EngineerName>sample string 4</EngineerName> <Notes>sample string 5</Notes> <BuzzerWorking>true</BuzzerWorking> <Timestamp>2025-04-27T16:37:12.5994795+00:00</Timestamp> </MaintenanceInformation> </MaintenanceInformation> </ServiceMaintenanceResponse>