Skip to main content
GET
/
api
/
2.0
/
physicians
/
{id}
/
Retrieve Physician
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/physicians/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "email": "jsmith@example.com",
  "first_name": "<string>",
  "last_name": "<string>",
  "license": "<string>",
  "license_state": "<string>",
  "npi": "<string>",
  "credentials": "<string>",
  "fax": "<string>",
  "id": 123,
  "is_active": true,
  "metadata": {
    "data": {},
    "object_id": "<string>",
    "object_web_link": "<string>"
  },
  "practice": 123,
  "specialty": "<string>",
  "user_id": 123
}

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<email>
required
first_name
string
required
Maximum string length: 50
last_name
string
required
Maximum string length: 60
license
string
required
license_state
string
required
npi
string
required
credentials
string | null
Maximum string length: 20
fax
string
read-only

The physician's fax number.

id
integer
read-only
is_active
boolean
read-only

Whether or not the physician is still active at the practice.

metadata
object | null
practice
integer<int64>
read-only
specialty
string
read-only
user_id
integer | null
read-only