GET
/
api
/
v2
/
ledger
/
institutions
/
{institutionId}
/
outstanding-orders
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.ledger.institutions.retrieve_outstanding_orders(
    "institutionId",
)
print(response.orders)
{
  "orders": [
    {
      "orderId": "<string>",
      "institutionId": "<string>",
      "balanceUsdCents": 123
    }
  ]
}

Path Parameters

institutionId
string
required

Identifier of the institution to get outstanding orders for.

Response

200
application/json

Outstanding orders retrieved successfully.