GET api/Notifications

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of KiviCOM.API.Business.Users.Notifications.NotificationInfo
NameDescriptionTypeAdditional information
NotificationType

string

None.

Subscribe

boolean

None.

PhoneOs

string

None.

DeviceId

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "NotificationType": "sample string 1",
    "Subscribe": true,
    "PhoneOs": "sample string 3",
    "DeviceId": "sample string 4"
  },
  {
    "NotificationType": "sample string 1",
    "Subscribe": true,
    "PhoneOs": "sample string 3",
    "DeviceId": "sample string 4"
  }
]

text/xml

Sample:
<ArrayOfNotificationInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KiviCOM.API.Business.Users.Notifications">
  <NotificationInfo>
    <DeviceId>sample string 4</DeviceId>
    <NotificationType>sample string 1</NotificationType>
    <PhoneOs>sample string 3</PhoneOs>
    <Subscribe>true</Subscribe>
  </NotificationInfo>
  <NotificationInfo>
    <DeviceId>sample string 4</DeviceId>
    <NotificationType>sample string 1</NotificationType>
    <PhoneOs>sample string 3</PhoneOs>
    <Subscribe>true</Subscribe>
  </NotificationInfo>
</ArrayOfNotificationInfo>