List documents
Get all documents for the organization, optionally filtered by customer or transfer.
Query parameters
Number of results to return (1-1000). Use with offset for traditional pagination.
Number of results to skip. Use with limit for traditional pagination.
Number of results per page (1-1000). Use with starting_after for cursor-based pagination.
Cursor for pagination. Use the ID of the last item from the previous page to get the next page. Use with page_size for cursor-based pagination.
Filter by customer ID
Filter by transfer ID
Filter by counterparty ID through linked transfers
Include internal/system-generated documents
Headers
API key
Response
Documents retrieved successfully
Example response
{
"data": [
{
"id": "doc_abc123",
"organizationId": "org_xyz789",
"customerId": "cus_abc123",
"transferId": "txn_xyz789",
"documentType": "INVOICE",
"documentSubtype": "BANK_STATEMENT",
"fileName": "invoice-2026-001.pdf",
"contentType": "application/pdf",
"sizeBytes": 1024000,
"status": "UPLOADED"
}
]
}Changes
Changed in 1 of the 19 revisions of this API.1
- ●
added the new
LIVENESS_CHECKenum value to the//response property for the response statusresponse-property-enum-value-added
- ●