PUT api/content/v4/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
APICommonWrapperOfNotificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | NotificationResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {
"List": [
{
"Title": "sample string 1",
"Description": "sample string 2",
"EntityType": "sample string 3",
"EntityId": 1,
"SourceId": 1,
"New": true,
"DateOfSent": "2026-01-15T11:35:42.4528044+00:00"
},
{
"Title": "sample string 1",
"Description": "sample string 2",
"EntityType": "sample string 3",
"EntityId": 1,
"SourceId": 1,
"New": true,
"DateOfSent": "2026-01-15T11:35:42.4528044+00:00"
}
],
"TotalRecords": 1
}
}
application/xml, text/xml
Sample:
<APICommonWrapperOfNotificationResponseMTRdQN6P xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/">
<d2p1:List>
<d2p1:NotificationResponseList>
<d2p1:DateOfSent>2026-01-15T11:35:42.4528044+00:00</d2p1:DateOfSent>
<d2p1:Description>sample string 2</d2p1:Description>
<d2p1:EntityId>1</d2p1:EntityId>
<d2p1:EntityType>sample string 3</d2p1:EntityType>
<d2p1:New>true</d2p1:New>
<d2p1:SourceId>1</d2p1:SourceId>
<d2p1:Title>sample string 1</d2p1:Title>
</d2p1:NotificationResponseList>
<d2p1:NotificationResponseList>
<d2p1:DateOfSent>2026-01-15T11:35:42.4528044+00:00</d2p1:DateOfSent>
<d2p1:Description>sample string 2</d2p1:Description>
<d2p1:EntityId>1</d2p1:EntityId>
<d2p1:EntityType>sample string 3</d2p1:EntityType>
<d2p1:New>true</d2p1:New>
<d2p1:SourceId>1</d2p1:SourceId>
<d2p1:Title>sample string 1</d2p1:Title>
</d2p1:NotificationResponseList>
</d2p1:List>
<d2p1:TotalRecords>1</d2p1:TotalRecords>
</Data>
<Message>sample string 1</Message>
<Status>Continue</Status>
</APICommonWrapperOfNotificationResponseMTRdQN6P>