Get Inventory Reconciliation Period Entries
GET/api/ledger/reconciliation/inventory/period-entries
The individual ledger entries behind ONE transaction-type concept of a month's ongoing reconciliation — the expandable drill-down. Each entry carries its amount, sync status and a route to inspect it: a batch aggregate (is_batch=true) links to its batch (batch_route) to see the members; everything else links to the journal entry (entry_route). can_sync is whether that entry can be pushed to the provider right now — the same eligibility the bulk sync_now action enforces — so an already-synced entry is false, and an entry whose sync_status is awaiting can still be false when it is a member of a batch that has not closed yet (it syncs with the batch, not on its own). An entry with net_amount 0 is still a real posting (its debit and credit legs cancel on this one account) and can be pushed like any other. Sorted by absolute amount, largest first. Authenticate with a Personal Access Token. Reads cached data only (no live provider call).
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.