GET api/v{version}/maintenanceservicetype
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version |
The requested API version |
string |
Required Default value is 1 |
Body Parameters
None.
Response Information
Resource Description
Collection of MaintenanceService| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceId | integer |
None. |
|
| Service | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ServiceId": 1,
"Service": "sample string 2"
},
{
"ServiceId": 1,
"Service": "sample string 2"
}
]
text/javascript
Sample:
[{"ServiceId":1,"Service":"sample string 2"},{"ServiceId":1,"Service":"sample string 2"}]
application/xml, text/xml
Sample:
<ArrayOfMaintenanceService xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNITE.External.API.Models">
<MaintenanceService>
<Service>sample string 2</Service>
<ServiceId>1</ServiceId>
</MaintenanceService>
<MaintenanceService>
<Service>sample string 2</Service>
<ServiceId>1</ServiceId>
</MaintenanceService>
</ArrayOfMaintenanceService>