GET
/
api
/
manual-journals
[
  {
    "id": 1,
    "date": "2024-03-20",
    "journalNumber": "MJ-2024-001",
    "journalType": "General",
    "reference": "REF-001",
    "amount": 1000,
    "currencyCode": "USD",
    "exchangeRate": 1,
    "description": "Monthly journal entry",
    "isPublished": false,
    "publishedAt": "2024-03-20T10:00:00Z",
    "createdAt": "2024-03-20T09:00:00Z",
    "updatedAt": "2024-03-20T09:30:00Z",
    "branchId": 1,
    "formattedAmount": "$1,000.00",
    "formattedDate": "Mar 20, 2024",
    "formattedPublishedAt": "Mar 20, 2024",
    "formattedCreatedAt": "Mar 20, 2024",
    "entries": [
      {
        "index": 1,
        "credit": 1000,
        "debit": 0,
        "accountId": 1,
        "note": "Payment for services",
        "contactId": 1,
        "branchId": 1,
        "projectId": 1,
        "account": {},
        "contact": {},
        "branch": {}
      }
    ],
    "attachments": [
      "<string>"
    ]
  }
]

Headers

Authorization
string
required

Value must be 'Bearer <token>' where <token> is an API key prefixed with 'bc_' or a JWT token.

Example:

"Bearer bc_1234567890abcdef"

organization-id
string
required

Required if Authorization is a JWT token. The organization ID to operate within.

Response

200
application/json

The manual journal details have been successfully retrieved.

The response is of type object[].