GET api/competitions?pageNumber={pageNumber}&pageSize={pageSize}

Get list of the competition notifications previously sent to the user

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageNumber

integer

Required

pageSize

integer

Required

Body Parameters

None.

Response Information

list notification

NameDescriptionTypeAdditional 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-04-25T06:40:59.6267025+02:00",
      "endDate": "2024-04-25T06:40:59.6277047+02:00",
      "expirationDate": "2024-04-25T06:40:59.6277047+02: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-04-25T06:40:59.6267025+02:00",
      "endDate": "2024-04-25T06:40:59.6277047+02:00",
      "expirationDate": "2024-04-25T06:40:59.6277047+02:00",
      "sticky": true,
      "isNotificationNew": true,
      "supplierId": 10,
      "isParticipant": true
    }
  ],
  "totalResults": 1
}