GET v1/Clients/{clientId}/WorkOrderRateTypes
Gets all active Work Order Rate Types.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
Client identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
A list.
Collection of RateTypeV1| Name | Description | Type | Additional information |
|---|---|---|---|
| RateTypeId |
The Rate type id. |
integer |
None. |
| RateTypeDescription |
The Rate type description. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"RateTypeId": 1,
"RateTypeDescription": "sample string 2"
},
{
"RateTypeId": 1,
"RateTypeDescription": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfRateType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Maintenance">
<RateType>
<RateTypeDescription>sample string 2</RateTypeDescription>
<RateTypeId>1</RateTypeId>
</RateType>
<RateType>
<RateTypeDescription>sample string 2</RateTypeDescription>
<RateTypeId>1</RateTypeId>
</RateType>
</ArrayOfRateType>