Skip to main content
GET
/
api
/
2.0
/
billing_codes
/
{id}
Retrieve Billing Code
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/billing_codes/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "code": "<string>",
  "description": "<string>",
  "practice": 123,
  "charge": "<string>",
  "id": 123,
  "sequence": -1
}

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<int64>
required

Response

200 - application/json
code
string
required

The code that a user and integrators will see.

Maximum string length: 10
description
string
required

The description of the code that users will see.

Maximum string length: 200
practice
integer<int64>
required

The practice who created the billing code.

charge
string<decimal> | null

The amount of money that will be charged for the code.

Pattern: ^-?\d{0,8}(?:\.\d{0,2})?$
id
integer
read-only

The internal elation id of the billing code.

sequence
integer

The position in the list of billing codes.

Required range: -2147483648 <= x <= 2147483647