Skip to main content
GET
/
api
/
2.0
/
practices
/
{id}
/
eligibility_usage
Get Practice Eligibility Usage
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/practices/{id}/eligibility_usage/ \
  --header 'Authorization: Bearer <token>'
{
  "end_date": "2023-12-25",
  "failed_checks": 123,
  "start_date": "2023-12-25",
  "successful_checks": 123,
  "total_checks": 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 practice

Query Parameters

end_date
string

End date for usage period (YYYY-MM-DD)

start_date
string

Start date for usage period (YYYY-MM-DD)

Response

200 - application/json
end_date
string<date>

End date of the usage period.

failed_checks
integer

Number of failed eligibility checks.

start_date
string<date>

Start date of the usage period.

successful_checks
integer

Number of successful eligibility checks.

total_checks
integer

Total number of eligibility checks performed.