GET Notification/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
NotificationRestResultName | Description | Type | Additional 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": "2025-01-05T02:36:07.3364004+01:00", "NotificationMethod": 6, "NotificationType": 7 }, { "Id": 1, "Message": "sample string 2", "FkDeviceId": 1, "FkUserId": 3, "Recipient": "sample string 4", "TimeStampSending": "2025-01-05T02:36:07.3364004+01: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>2025-01-05T02:36:07.3364004+01: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>2025-01-05T02:36:07.3364004+01:00</TimeStampSending> </NotificationRestItem> </RestItems> </NotificationRestResult>