Tross
THERAPYNOTES

Fetch Clinician Details

Fetch clinician details in Therapy Notes

POSThttps://api.ontross.com/api/integrations/tn/fetch-clinician-details
Request Fields
input
object
required
Input object.
input.clinicianID
string
required
Clinician id
auth_id
string
required
Auth id
Output Fields
clinician
object
Clinician object.
clinician.ID
integer
Id
clinician.EncryptedID
string
Encrypted id
clinician.FirstName
string
First name
clinician.LastName
string
Last name
clinician.Email
string
Email
clinician.EmailStatus
string
Email status
clinician.Roles
string
Roles
clinician.MobilePhoneFormatted
string
Mobile phone formatted
clinician.HomePhoneFormatted
string
Home phone formatted
clinician.MobilePhoneNumber
string
Mobile phone number
clinician.HomePhoneNumber
string
Home phone number
clinician.IsClinician
boolean
Is clinician
clinician.IsSupervisee
boolean
Is supervisee
clinician.IsSupervisor
boolean
Is supervisor
clinician.IsIntern
boolean
Is intern
clinician.PreferredName
string
Preferred name
clinician.ClinicianType
string
Clinician type
clinician.CanViewProfile
boolean
Can view profile
clinician.ClinicianLicenseExpirationDate
string
Clinician license expiration date
clinician.EnrolledInePrescribe
boolean
Enrolled ine prescribe
clinician.HasEprescribeEnrollment
boolean
Has eprescribe enrollment
clinician.ClinicianCanReEnroll
boolean
Clinician can re enroll
clinician.IsEpcsClinician
boolean
Is epcs clinician
clinician.HasTherapySearch
boolean
Has therapy search
clinician.ClinicianCanEnrollInEprescribe
boolean
Clinician can enroll in eprescribe
Code
curl --request POST \
  --url https://api.ontross.com/api/integrations/tn/fetch-clinician-details \
  --header 'X-API-Key: REPLACE_KEY_VALUE' \
  --header 'content-type: application/json' \
  --data '{"input":{"clinicianID":"string_id"},"auth_id":"auth_uuid_here"}'
Request BODY
{
  "input": {
    "clinicianID": "string_id"
  },
  "auth_id": "auth_uuid_here"
}