GET
/
api
/
v2
/
ledger
/
insurance
/
outstanding-accounts
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.ledger.insurance.list_outstanding_accounts()
print(response.accounts)
{
  "accounts": [
    {
      "claimId": "<string>",
      "insuranceId": "<string>",
      "balanceUsdCents": 123
    }
  ]
}

Response

200
application/json

Outstanding accounts retrieved successfully.