v1

latestOpenAPI 3.0.0NexHealth License 1.02026-07-2688180386.6 KB
Adjustments

Create adjustment

This endpoint enqueues a write-back that records the adjustment in the integrated health record system

post/adjustments

Query parameters

subdomainstring required

Used to scope the request to the specified institution

location_idinteger required

Used to scope the request to the specified location

Headers

Nex-Api-Versionstring required

The NexHealth API version

Request body

Example request

{
  "adjustment": {
    "patient_id": 1,
    "amount": 138,
    "adjustment_type_id": 1234,
    "transaction_id": "API:123456",
    "adjusted_at": "2024-05-20T21:00:00+00:00",
    "charge_splits": {
      "charge_id_1": "37.50",
      "charge_id_2": "100.50"
    },
    "provider_splits": {
      "provider_id_1": "37.50",
      "provider_id_2": "100.50"
    },
    "notes": "Adding taxes"
  }
}

Response

Create adjustment