POST
/
api
/
v2
/
ledger
/
institution-payment
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.ledger.institution_payment(
    amount_usd_cents=0,
    ik="ik",
    institution_id="institutionId",
    invoice_id="invoiceId",
    reason="reason",
)
print(response.ledger_entry_id)
{
  "ledgerEntryId": "<string>"
}

Body

application/json

Response

200
application/json

The institution payment was posted successfully.