GET api/notifications/types
Get Status of the notification setting per user
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
List of notification settings
| Name | Description | Type | Additional information |
|---|---|---|---|
| NotificationType |
NotificationType type (General - 0) |
NotificationType |
None. |
| IsTurnedOn |
Status of the notification |
boolean |
None. |
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"notificationType": 0,
"isTurnedOn": true,
"name": "sample string 2"
},
{
"notificationType": 0,
"isTurnedOn": true,
"name": "sample string 2"
}
]