Get a list of all lolo requests

GET /Api/LoloRequests

Requires verified email; Requires one of the following permissions: Shop.IndexLoloRequests; Requires the following features to be enabled: Shop

Query parameters

  • Filters string
  • Sorts string
  • Page integer(int32)

    Minimum value is 1, maximum value is 2147483647.

  • PageSize integer(int32)

    Minimum value is 1, maximum value is 2147483647.

Responses

GET /Api/LoloRequests
curl \
 -X GET https://app.lovassy.hu/Api/LoloRequests \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 42,
    "title": "string",
    "body": "string",
    "userId": "string",
    "acceptedAt": "2024-05-04T09:42:00+00:00",
    "deniedAt": "2024-05-04T09:42:00+00:00",
    "createdAt": "2024-05-04T09:42:00+00:00",
    "updatedAt": "2024-05-04T09:42:00+00:00"
  }
]