GET api/notifications?pageNumber={pageNumber}&pageSize={pageSize}&customerIdApp={customerIdApp}
Get list of the notifications previously sent to the user
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber | integer |
Required |
|
| pageSize | integer |
Required |
|
| customerIdApp | integer |
None. |
Body Parameters
None.
Response Information
List of notifications
| Name | Description | Type | Additional information |
|---|---|---|---|
| Items |
Notification Items |
Collection of UserNotifications |
None. |
| TotalResults |
Total Results count |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"items": [
{
"notificationId": 1,
"title": "sample string 2",
"body": "sample string 3",
"type": 0,
"isNotificationNew": true,
"customData": {
"type": "sample string 3",
"supplierid": "sample string 4",
"notificationid": "sample string 5",
"categories": "sample string 6",
"subcategories": "sample string 7",
"themes": "sample string 8",
"specialoffer": "sample string 9",
"sortdirection": "sample string 10",
"isfavorite": true
},
"expirationDate": "2025-10-29T23:21:31.7579147+01:00",
"createDate": "2025-10-29T23:21:31.7579147+01:00",
"scheduledDate": "2025-10-29T23:21:31.7579147+01:00",
"image": "sample string 6",
"imageCard": "sample string 7",
"imageType": 0,
"customerAccess": 0,
"customerIdApps": [
1,
2
]
},
{
"notificationId": 1,
"title": "sample string 2",
"body": "sample string 3",
"type": 0,
"isNotificationNew": true,
"customData": {
"type": "sample string 3",
"supplierid": "sample string 4",
"notificationid": "sample string 5",
"categories": "sample string 6",
"subcategories": "sample string 7",
"themes": "sample string 8",
"specialoffer": "sample string 9",
"sortdirection": "sample string 10",
"isfavorite": true
},
"expirationDate": "2025-10-29T23:21:31.7579147+01:00",
"createDate": "2025-10-29T23:21:31.7579147+01:00",
"scheduledDate": "2025-10-29T23:21:31.7579147+01:00",
"image": "sample string 6",
"imageCard": "sample string 7",
"imageType": 0,
"customerAccess": 0,
"customerIdApps": [
1,
2
]
}
],
"totalResults": 1
}