GET api/competitions?pageNumber={pageNumber}&pageSize={pageSize}
Get list of the competition notifications previously sent to the user
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
pageNumber | integer |
Required |
|
pageSize | integer |
Required |
Body Parameters
None.
Response Information
list notification
Name | Description | Type | Additional information |
---|---|---|---|
Items |
Competition Items |
Collection of UserCompetitions |
None. |
TotalResults |
Total Results count |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "items": [ { "id": 1, "name": "sample string 2", "title": "sample string 3", "body": "sample string 4", "image": "sample string 5", "imageCard": "sample string 6", "startDate": "2024-11-21T08:34:19.3292425+01:00", "endDate": "2024-11-21T08:34:19.3292425+01:00", "expirationDate": "2024-11-21T08:34:19.3292425+01:00", "sticky": true, "isNotificationNew": true, "supplierId": 10, "isParticipant": true }, { "id": 1, "name": "sample string 2", "title": "sample string 3", "body": "sample string 4", "image": "sample string 5", "imageCard": "sample string 6", "startDate": "2024-11-21T08:34:19.3292425+01:00", "endDate": "2024-11-21T08:34:19.3292425+01:00", "expirationDate": "2024-11-21T08:34:19.3292425+01:00", "sticky": true, "isNotificationNew": true, "supplierId": 10, "isParticipant": true } ], "totalResults": 1 }