v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Manual Journal Entries

Query manual journal entries

Query manual journal entries for the authenticated user

post/v6/accounting/manualJournalEntries/query

Request body

cursorstring nullable

Cursor from the previous paginated response

limitinteger

Page size, i.e. number of items to return per page

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "id": "mje_12345",
      "status": "ACTIVE",
      "date": "2026-01-15",
      "description": "Monthly accrual adjustment",
      "amount": 50000,
      "recurrence": {
        "frequency": "MONTHLY",
        "interval": 1,
        "endDate": "2025-12-31"
      },
      "apiName": "MANUAL_ENTRY",
      "apiSourceId": "ext_abc123",
      "children": [
        {
          "glAccount": {
            "id": "gla_38560327",
            "name": "Officer(s) Salaries and Wages",
            "accountNo": "60210",
            "type": "EXPENSE",
            "iconUrl": "https://cdn.sandbox.tight.com/icons/glAccountTypes/expense.png",
            "displayName": "#60210 Officer(s) Salaries and Wages"
          },
          "amount": 5000,
          "crAmount": 5000
        }
      ],
      "customData": {
        "internal_key": "some_internal_key",
        "some_other_field": 23434
      }
    }
  ]
}