v1

latestOpenAPI 3.0.32026-07-26362271803.3 KB
Bank Reconciliation

List Bank Reconciliation Reports

Retrieve a paginated list of bank reconciliation reports. Supports filtering by start_date, end_date, entity, account, and search query (q). Default sort is by statement_ending_date descending.

get/coa/api/v2/reconciliation

Query parameters

accountinteger

Filter by account ID

end_datestring

Filter by maximum statement ending date (YYYY-MM-DD)

entityinteger

Filter by entity ID

limitinteger

Number of results to return per page.

offsetinteger

The initial index from which to return the results.

qstring

Search term for account name, number, or reconciled_by name

sortstring

Sort field (prefix with - for descending)

start_datestring

Filter by minimum statement ending date (YYYY-MM-DD)

Response

countinteger required
nextstring uri nullable
previousstring uri nullable

Example response

{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}