GET api/Configuration/EventTypes
Allows a user to get all existing event types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The list of event types.
Collection of ESignSystems.SmartSAFE.Models.EventNotification.EventTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EventTypeId |
Gets or sets the identifier of the event notification type. |
integer |
None. |
| LookupValue |
Gets or sets the lookup value of the event notification type. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EventTypeId": 1,
"LookupValue": "sample string 2"
},
{
"EventTypeId": 1,
"LookupValue": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfEventTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.EventNotification">
<EventTypeModel>
<EventTypeId>1</EventTypeId>
<LookupValue>sample string 2</LookupValue>
</EventTypeModel>
<EventTypeModel>
<EventTypeId>1</EventTypeId>
<LookupValue>sample string 2</LookupValue>
</EventTypeModel>
</ArrayOfEventTypeModel>