POST
/
api
/
v2
/
ledger
/
institution-adjustment
import os
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
response = client.v2.ledger.institution_adjustment(
    amount_usd_cents=0,
    claim_id="claimId",
    ik="ik",
    institution_id="institutionId",
    order_id="orderId",
    reason="reason",
)
print(response.ledger_entry_id)
{
  "ledgerEntryId": "<string>"
}

Body

application/json

Response

200
application/json

The institution adjustment was posted successfully.