API Reference

Adjustments

🚧

Use our latest version to access this data

Adjustments are no longer supported in v2.2. Please use the same endpoint in v20240412 to access this data.

Adjustments represent a practice adding or subtracting from a patient balance. Adjustments can be applied for a huge variety of reasons including write offs (when a practice chooses not to charge a patient for a fee that was not covered by insurance), late fees, or employee discounts.

📘

Understanding adjustment directionality

Unlike payments or charges, which always have a set effect on a patient balance, adjustments can subtract from the overall balance (credits) or add to the overall balance (debits). You can understand the impact of an adjustment on the balance by accessing the directionality field and checking whether the specific adjustment is a "credit" or "debit".

Adjustments response object

{
  "code": false,
  "description": "Description",
  "error": [
    "Error"
  ],
  "data": [
    {
      "id": 113,
      "accountable_type": "patient",
      "accountable_id": 1,
      "value": {
        "amount": "62.00",
        "currency": "USD"
      },
      "patient_id": 3,
      "provider_id": 15,
      "procedure_id": 42,
      "date": "2020-06-05",
      "patient": {
        ...
      },
      "provider": {
        ...
      },
      "procedure": {
        ...
      },
      "directionality": "credit"
    }
  ],
  "count": 2
}