PUT api/Content/v3/GetNotifications
Request Information
URI Parameters
None.
Body Parameters
NotificationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| UserUniqueId | integer |
None. |
|
| PageNumber | integer |
Required |
|
| DeviceTokenId | string |
None. |
|
| LanguageId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"UserUniqueId": 2,
"PageNumber": 3,
"DeviceTokenId": "sample string 4",
"LanguageId": 5
}
application/xml, text/xml
Sample:
<NotificationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <CustomerId>1</CustomerId> <DeviceTokenId>sample string 4</DeviceTokenId> <LanguageId>5</LanguageId> <PageNumber>3</PageNumber> <UserUniqueId>2</UserUniqueId> </NotificationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NotificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| List | Collection of NotificationResponseList |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"List": [
{
"Title": "sample string 1",
"Description": "sample string 2",
"EntityType": "sample string 3",
"EntityId": 1,
"SourceId": 1,
"New": true,
"DateOfSent": "2026-01-16T04:31:04.4909931+00:00"
},
{
"Title": "sample string 1",
"Description": "sample string 2",
"EntityType": "sample string 3",
"EntityId": 1,
"SourceId": 1,
"New": true,
"DateOfSent": "2026-01-16T04:31:04.4909931+00:00"
}
],
"TotalRecords": 1
}
application/xml, text/xml
Sample:
<NotificationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<List>
<NotificationResponseList>
<DateOfSent>2026-01-16T04:31:04.4909931+00:00</DateOfSent>
<Description>sample string 2</Description>
<EntityId>1</EntityId>
<EntityType>sample string 3</EntityType>
<New>true</New>
<SourceId>1</SourceId>
<Title>sample string 1</Title>
</NotificationResponseList>
<NotificationResponseList>
<DateOfSent>2026-01-16T04:31:04.4909931+00:00</DateOfSent>
<Description>sample string 2</Description>
<EntityId>1</EntityId>
<EntityType>sample string 3</EntityType>
<New>true</New>
<SourceId>1</SourceId>
<Title>sample string 1</Title>
</NotificationResponseList>
</List>
<TotalRecords>1</TotalRecords>
</NotificationResponse>