Skip to main content
PATCH
/
api
/
2.0
/
physicians
/
{id}
Partially Update Physician
curl --request PATCH \
  --url https://sandbox.elationemr.com/api/2.0/physicians/{id}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "credentials": "<string>",
  "email": "jsmith@example.com",
  "first_name": "<string>",
  "last_name": "<string>",
  "license": "<string>",
  "license_state": "<string>",
  "metadata": {
    "data": {},
    "object_id": "<string>",
    "object_web_link": "<string>"
  },
  "npi": "<string>"
}
'
{
  "email": "jsmith@example.com",
  "first_name": "<string>",
  "last_name": "<string>",
  "license": "<string>",
  "license_state": "<string>",
  "npi": "<string>",
  "credentials": "<string>",
  "id": 123,
  "is_active": true,
  "metadata": {
    "data": {},
    "object_id": "<string>",
    "object_web_link": "<string>"
  },
  "practice": 123,
  "specialty": "<string>",
  "user_id": 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<int64>
required

Body

application/json
credentials
string | null
Maximum string length: 20
email
string<email>
first_name
string
Maximum string length: 50
last_name
string
Maximum string length: 60
license
string
license_state
string
metadata
object
npi
string

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
id
integer
read-only
is_active
boolean
read-only

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

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