POST
/
api
/
v2
/
ledger
/
patient-adjustment
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.ledger.patient_adjustment(
    amount_usd_cents=0,
    ik="ik",
    order_id="orderId",
    patient_id="patientId",
    reason="reason",
)
print(response.ledger_entry_id)
{
  "ledgerEntryId": "<string>"
}

Body

application/json

Response

200
application/json

The patient adjustment was posted successfully.