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

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

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
account_type
enum<string> | null
  • regular - Regular staff
  • oncall - On call (not paid)
  • ft_non_prescribing - Full-Time Non-Prescribing
  • pt_prescribing - Limited Use
Available options:
regular,
oncall,
ft_non_prescribing,
pt_prescribing
credentialed
boolean
default:false
has_chart_access
boolean
default:true
is_practice_admin
boolean
default:false
is_read_only
boolean
default:false
physician_qualifications
object

Response

201 - 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
account_type
enum<string> | null
  • regular - Regular staff
  • oncall - On call (not paid)
  • ft_non_prescribing - Full-Time Non-Prescribing
  • pt_prescribing - Limited Use
Available options:
regular,
oncall,
ft_non_prescribing,
pt_prescribing
credentialed
boolean
default:false
has_chart_access
boolean
default:true
id
integer
read-only
is_practice_admin
boolean
default:false
is_read_only
boolean
default:false
physician_qualifications
object