Workflow-run
Task
Document
- GETDocument metadata
- GETFull document details
- GETDocument CSV content
- POSTUnzip file and return PDFs
- POSTGenerate CSV document
- POSTPresigned URL for upload
- POSTClassify document (async)
- POSTSplit document (async)
- POSTCreate documents from splits
- POSTLegacy extract document (async)
- POSTDocument extraction (async)
- POSTRender document body
- POSTGenerate document from template (async)
- POSTTransform JSON to HTML
- POSTDocument reasoning (async)
- POSTSearch across documents
- GETPDF template document metadata
- POSTCombine PDF documents
Async-result
Communication
Clearinghouse
Ledger
- POSTCreate new ledger order
- POSTPost patient adjustment
- POSTPost institution adjustment
- POSTPost claim adjustment
- POSTPost claim payment
- POSTPost patient payment
- POSTPost institution payment
- POSTPost order write-off
- POSTPost invoice assignment
- POSTReverse a ledger entry
- GETGet outstanding institutional orders
- GETGet all outstanding institutional accounts
- GETGet all outstanding insurance accounts
- GETGet all outstanding patient accounts
- GETGet institutional order balance
- GETGet outstanding balances for a single order
- POSTGet outstanding balances for multiple orders
Integration - Snowflake
Dashboard
Events
Browser Automation
Ledger
Get outstanding balances for multiple orders
Retrieves outstanding balances for an array of order IDs across all balance categories (order-writeoff, unallocated, institution invoices, institution uninvoiced, patient responsibility).
POST
/
api
/
v2
/
ledger
/
orders
/
batch-balances
Copy
{
"orders": [
{
"orderId": "<string>",
"balances": {
"orderWriteoff": 123,
"unallocated": 123,
"institutionInvoiced": 123,
"institutionUninvoiced": 123,
"patientResponsibility": 123
}
}
]
}
Body
application/json
Response
200
application/json
Outstanding balances retrieved successfully.
Copy
{
"orders": [
{
"orderId": "<string>",
"balances": {
"orderWriteoff": 123,
"unallocated": 123,
"institutionInvoiced": 123,
"institutionUninvoiced": 123,
"patientResponsibility": 123
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.