Journal entry journal entry retrieve

GET /journal-entry/journal-entry/{id}/

Path parameters

  • id integer Required

    A unique integer value identifying this journal entry.

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/journal-entry/{id}/
curl \
 --request GET 'http://api.example.com/journal-entry/journal-entry/{id}/'
Response examples (200)
{
  "id": 42,
  "title": "string",
  "content": "string",
  "date": "2025-05-04T09:42:00Z",
  "category": 42
}