Get Clinician Profile By Id
Retrieves detailed information about a specific clinician including their credentials, specialties, availability, and contact information.
Overview
- Method: GET
- Path:
/clinician/profile/get-clinician-profile/<clinicianId> - Tags: clinician
Parameters
No parameters required.
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{
"id": "string",
"firstName": "string",
"lastName": "string",
"email": "user@example.com",
"licenseNumber": "string",
"specialties": "string",
"credentials": "string",
"availability": "string",
"workingHours": "string",
"end": "string"
}400
Bad Request
Content Type: application/json
{}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X GET \
https://api.pillexa.com/clinician/profile/get-clinician-profile/<clinicianId> \
-H "Content-Type: application/json" \