GET Notification

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

NotificationRestResult
NameDescriptionTypeAdditional information
RestItems

Collection of RestItem objects.

Collection of NotificationRestItem

None.

Response Formats

application/json, text/json

Sample:
{
  "RestItems": [
    {
      "Id": 1,
      "Message": "sample string 2",
      "FkDeviceId": 1,
      "FkUserId": 3,
      "Recipient": "sample string 4",
      "TimeStampSending": "2024-04-29T21:12:51.712158+02:00",
      "NotificationMethod": 6,
      "NotificationType": 7
    },
    {
      "Id": 1,
      "Message": "sample string 2",
      "FkDeviceId": 1,
      "FkUserId": 3,
      "Recipient": "sample string 4",
      "TimeStampSending": "2024-04-29T21:12:51.712158+02:00",
      "NotificationMethod": 6,
      "NotificationType": 7
    }
  ]
}

application/xml, text/xml

Sample:
<NotificationRestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api360.Models">
  <RestItems>
    <NotificationRestItem>
      <FkDeviceId>1</FkDeviceId>
      <FkUserId>3</FkUserId>
      <Id>1</Id>
      <Message>sample string 2</Message>
      <NotificationMethod>6</NotificationMethod>
      <NotificationType>7</NotificationType>
      <Recipient>sample string 4</Recipient>
      <TimeStampSending>2024-04-29T21:12:51.712158+02:00</TimeStampSending>
    </NotificationRestItem>
    <NotificationRestItem>
      <FkDeviceId>1</FkDeviceId>
      <FkUserId>3</FkUserId>
      <Id>1</Id>
      <Message>sample string 2</Message>
      <NotificationMethod>6</NotificationMethod>
      <NotificationType>7</NotificationType>
      <Recipient>sample string 4</Recipient>
      <TimeStampSending>2024-04-29T21:12:51.712158+02:00</TimeStampSending>
    </NotificationRestItem>
  </RestItems>
</NotificationRestResult>