Get a list of all feed items

GET /Api/FeedItems

Requires verified email; Requires one of the following permissions: Feed.IndexFeedItems; Requires the following features to be enabled: Feed

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

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • title string | null
    • description string | null
    • createdAt string(date-time)
    • Additional properties are NOT allowed
  • 401

    Unauthorized

  • 403

    Forbidden

GET /Api/FeedItems
curl \
 -X GET https://app.lovassy.hu/Api/FeedItems \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "title": "string",
    "description": "string",
    "createdAt": "2024-05-04T09:42:00+00:00",
    "link": "string"
  }
]