GET api/Event/GetEventype?securityKey={securityKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| securityKey | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EventType| Name | Description | Type | Additional information |
|---|---|---|---|
| SecurityKey | string |
None. |
|
| EventTypeId | integer |
None. |
|
| EventTypeName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SecurityKey": "sample string 1",
"EventTypeId": 2,
"EventTypeName": "sample string 3"
},
{
"SecurityKey": "sample string 1",
"EventTypeId": 2,
"EventTypeName": "sample string 3"
}
]
text/html
Sample:
[{"SecurityKey":"sample string 1","EventTypeId":2,"EventTypeName":"sample string 3"},{"SecurityKey":"sample string 1","EventTypeId":2,"EventTypeName":"sample string 3"}]
application/xml, text/xml
Sample:
<ArrayOfEventType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dnyanved.Core.Model">
<EventType>
<EventTypeId>2</EventTypeId>
<EventTypeName>sample string 3</EventTypeName>
<SecurityKey>sample string 1</SecurityKey>
</EventType>
<EventType>
<EventTypeId>2</EventTypeId>
<EventTypeName>sample string 3</EventTypeName>
<SecurityKey>sample string 1</SecurityKey>
</EventType>
</ArrayOfEventType>