v1

latestOpenAPI 3.0.0NexHealth License 1.02026-07-2688180386.6 KB
Fee Schedules

View fee schedule

This endpoint returns a single fee schedule

get/fee_schedules/{id}

Path parameters

idinteger required

Query parameters

subdomainstring required

Used to scope the request to the specified institution

include[]string[]

Resources to be included in the response

Headers

Nex-Api-Versionstring required

The NexHealth API version

Response

Successful

codeboolean

Indicates the success or failure of the request

descriptionstring

Additional context on the request to help with debugging.

errorstring[]

Any errors that occur during the execution of the request.

countinteger

Number of total objects, in case of collection.

Example response

{
  "description": "Description",
  "error": [
    "Error message"
  ],
  "data": {
    "id": 113,
    "name": "Cash",
    "active": true,
    "location_id": 21,
    "updated_at": "2020-06-05T20:16:57.007Z",
    "procedure_fees": [
      {
        "procedure_code_id": "ab123456-11aa-99ff-a111-d1ee12345678",
        "fee": {
          "amount": "62.00",
          "currency": "USD"
        },
        "code": "D0120"
      }
    ]
  },
  "count": 2
}