Get a list of notification types
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
NotificationType
| Property | Description | Type | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| notificationCategory | NotificationCategory | |||||||||||||
|
NotificationCategory properties
|
||||||||||||||
| notificationTypeDescription | A description of the notification type | string | ||||||||||||
| notificationTypeId | The id of the notification type | integer (int32) | ||||||||||||
| notificationTypeInfo | The notification type name | string | ||||||||||||
Example Response
[
{ "notificationCategory": { "notificationCategoryDescription": "string", "notificationCategoryId": 1, "notificationCategoryInfo": "string"
}, "notificationTypeDescription": "string", "notificationTypeId": 1, "notificationTypeInfo": "string"
}
]