GetDepartmentsAndDivisions
Returns the list of employer departments and divisions.
JavaScript library method
patientportal.auth.getDepartmentsAndDivisions({regCode: <reg-code>, isOH: <is-oh>});
HTTP Method
Verb | URL |
---|---|
GET | /patientportalapi/auth/departments-divisions |
URL Parameters
Parameter | Type | Description |
---|---|---|
reg-code | string | Online referral portal sign up access code that is provided to the manager. |
is-oh | bool | True for the referral portal. False for the patient portal. |
Returns
DepartmentData[] DivisionData[]
Returned JSON
{
"Departments": [
{
"Key": "D123",
"Name": "HR"
}
],
"Divisions": [
{
"Key": "Dv123",
"Name": "Division 123"
}
]
}
Remarks
For patient portal, providing departments and divisions during registration setting needs to enabled. If the code isn’t the sign up code or the settings is disabled, an exception is thrown.