List Entries by Source
GET/api/ledger/entries/by-source-list
Every live (non-discarded, non-reversal, non-reversed) v2 ledger journal entry for a source document, as a lightweight list. Where /by-source returns only the latest single entry, a source can post more than one current entry — an Amazon settlement posts both an invoice AND a bill — so a source-doc accounting list (e.g. the Amazon bank-transaction detail page) needs the full set. Each item links to /v2/ledger/entries/{id}. source_type is the source model FQN.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Returns data: an array of { id, type, reference, total }. Empty array when the source has no live entries.
total is the NET document total (the provider-booked face value — net control-account movement), not the gross debit total. For an Amazon settlement bill with internal reserve contra legs the two differ (e.g. 842.67 net vs 1,305.86 gross).
Request
Responses
- 200
- 401
- 403
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.