GET v1/Clients/{clientId}/WorkOrderEventTypes
Gets all active Work Order Event 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 EventTypeV1| Name | Description | Type | Additional information |
|---|---|---|---|
| EventTypeId |
The event type id. |
integer |
None. |
| EventTypeDescription |
The event type description. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EventTypeId": 1,
"EventTypeDescription": "sample string 2"
},
{
"EventTypeId": 1,
"EventTypeDescription": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfEventType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Maintenance">
<EventType>
<EventTypeDescription>sample string 2</EventTypeDescription>
<EventTypeId>1</EventTypeId>
</EventType>
<EventType>
<EventTypeDescription>sample string 2</EventTypeDescription>
<EventTypeId>1</EventTypeId>
</EventType>
</ArrayOfEventType>