Get list of journal entries

GET /api-v1/journal

Headers

Query parameters

Responses

GET /api-v1/journal
curl \
 -X GET http://wyzio.app/api-v1/journal \
 -H "TARGET-ORGANIZATION-ID: 42" \
 -H "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "amount": 42.0,
    "creatorContactId": 42,
    "creditAccounts": "string",
    "debitAccounts": "string",
    "description": "string",
    "entryDate": "2024-05-04T09:42:00+00:00",
    "entryId": 42,
    "hasWarnings": true,
    "id": 42,
    "isDeleted": true,
    "organizationId": 42,
    "tenantId": 42,
    "type": "OPENING",
    "warnings": "string"
  }
]