Get Clinician Details
GET/api/v2/public/clinicians/:clinicianId/details
General Information
This endpoint allows you to retrieve clinician information
Request
Responses
- 201
- 400
- 401
- 403
- application/json
- Schema
- Example (from schema)
Schema
data object
clinicianId stringrequired
Id of the clinician
firstName stringrequired
First name of the clinician
lastName stringrequired
Last name of the clinician
contactEmail stringrequired
Email of the clinician
contactPhone stringrequired
Contact phone of the clinician
licenseType Arrayrequired
List of valid license types of the clinician
{
"data": {
"clinicianId": "gpMEmsoXfWVmhXJIvXipPjo0dc43",
"firstName": "John",
"lastName": "Doe",
"contactEmail": "john@doe.com",
"contactPhone": "+12345678910",
"licenseType": [
"RN",
"CNA"
]
}
}
Bad request
- application/json
- Schema
- Example (from schema)
- Request Validation
Schema
message string[]
Error description
error string
The type of error
statusCode integer
Status code of the error
{
"message": [
"Property must be a string"
],
"error": "Bad Request",
"statusCode": 400
}
Request Validation Error
{
"message": [
"clinicianId must be a string"
],
"error": "Bad Request",
"statusCode": 400
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
message string
Error description
statusCode integer
Status code of the error
{
"message": "Unauthorized",
"statusCode": 401
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
message string
Error description
error string
The type of error
statusCode integer
Status code of the error
{
"message": "Forbidden Resource",
"error": "Forbidden",
"statusCode": 403
}
Loading...