Skip to main content
GET
/
api
/
2.0
/
users
/
{id}
Retrieve User
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/users/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "email": "<string>",
  "first_name": "<string>",
  "is_active": true,
  "last_name": "<string>",
  "practice": 123,
  "has_chart_access": true,
  "id": 123,
  "is_practice_admin": false,
  "physician_qualifications": {
    "credentials": "<string>",
    "license": "<string>",
    "license_state": "<string>",
    "npi": "<string>",
    "dea": "<string>"
  }
}

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
email
string
required
Maximum string length: 255
first_name
string
required
Maximum string length: 50
is_active
boolean
required
last_name
string
required
Maximum string length: 60
practice
integer<int64>
required
user_type
enum<string>
required
Available options:
physician,
staff
has_chart_access
boolean
default:true
id
integer
read-only
is_practice_admin
boolean
default:false
physician_qualifications
object