GET api/Notification/GetAllPushNotifications/{pageNumber}/{rowsPerPage}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber | integer |
Required |
|
| rowsPerPage | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PushNotificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Application | string |
None. |
|
| Topic | string |
None. |
|
| Caption | string |
None. |
|
| Message | string |
None. |
|
| ImagePath | string |
None. |
|
| Segments | string |
None. |
|
| ExtraData | string |
None. |
|
| SentDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Application": "sample string 2",
"Topic": "sample string 3",
"Caption": "sample string 4",
"Message": "sample string 5",
"ImagePath": "sample string 6",
"Segments": "sample string 7",
"ExtraData": "sample string 8",
"SentDate": "2026-06-25T22:15:05.410164-04:00"
},
{
"Id": 1,
"Application": "sample string 2",
"Topic": "sample string 3",
"Caption": "sample string 4",
"Message": "sample string 5",
"ImagePath": "sample string 6",
"Segments": "sample string 7",
"ExtraData": "sample string 8",
"SentDate": "2026-06-25T22:15:05.410164-04:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfPushNotificationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.MobileApp">
<PushNotificationResponse>
<Application>sample string 2</Application>
<Caption>sample string 4</Caption>
<ExtraData>sample string 8</ExtraData>
<Id>1</Id>
<ImagePath>sample string 6</ImagePath>
<Message>sample string 5</Message>
<Segments>sample string 7</Segments>
<SentDate>2026-06-25T22:15:05.410164-04:00</SentDate>
<Topic>sample string 3</Topic>
</PushNotificationResponse>
<PushNotificationResponse>
<Application>sample string 2</Application>
<Caption>sample string 4</Caption>
<ExtraData>sample string 8</ExtraData>
<Id>1</Id>
<ImagePath>sample string 6</ImagePath>
<Message>sample string 5</Message>
<Segments>sample string 7</Segments>
<SentDate>2026-06-25T22:15:05.410164-04:00</SentDate>
<Topic>sample string 3</Topic>
</PushNotificationResponse>
</ArrayOfPushNotificationResponse>