List Dismissed Documents
GET/api/ledger/reconciliation/dismissed
The provider documents previously dismissed from reconciliation on a connection, as a paginated, filterable, sortable list — the "show dismissed" view for reviewing and restoring documents that were hidden. Restore them with POST /api/ledger/reconciliation/restore or /restore/bulk.
Authentication: Requires Bearer token.
Query parameters: connection_id (required); standard pagination; sort (prefix with - for DESC; allowed: reference, secondary_reference, counterparty, total, sub_total, tax_total, amount_due, document_date, due_date, line_count, provider_updated_at, status, remote_type, remote_id); filter[...] (remote_type, status, doc_class = invoice|journal, date_from/date_to); search; and filter_groups. Each row's id is the composite "{remote_type}:{remote_id}".
Response: 200, a paginated list of dismissed documents (same row shape as the provider-only list, including doc_class, counterparty, secondary_reference, sub_total, tax_total, amount_due, due_date, line_count, and provider_updated_at).
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.