Skip to main content
POST
/
api
/
2.0
/
patients
/
{id}
/
outstanding_balance
Update Outstanding Balance
curl --request POST \
  --url https://sandbox.elationemr.com/api/2.0/patients/{id}/outstanding_balance/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "balance": "<string>"
}
'
{
  "balance": "<string>",
  "patient_id": 123
}

Documentation Index

Fetch the complete documentation index at: https://help.elationhealth.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
integer
required

The id of the patient

Body

application/json
balance
string<decimal>
required

The outstanding balance in cents.

Pattern: ^-?\d{0,10}(?:\.\d{0,2})?$

Response

200 - application/json
balance
string<decimal>
required

The outstanding balance in cents.

Pattern: ^-?\d{0,10}(?:\.\d{0,2})?$
patient_id
integer<int64>
read-only