Journal entry summary list

GET /journal-entry/summary/

Query parameters

  • category integer
  • search string

    A search term.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • id integer Required
    • title string Required

      Maximum length is 20.

    • content string Required

      Maximum length is 1000.

    • date string(date-time)
    • category integer Required
GET /journal-entry/summary/
curl \
 --request GET 'http://api.example.com/journal-entry/summary/'
Response examples (200)
[
  {
    "id": 42,
    "title": "string",
    "content": "string",
    "date": "2025-05-04T09:42:00Z",
    "category": 42
  }
]