Update Clinician Profile
Update clinician profile fields including availability, coverage, rates, languages, and external network metadata.
Overview
- Method: PUT
- Path:
/clinician/profile/update-clinician-profile/<clinicianId> - Tags: clinician
Parameters
clinicianId (path)
- Type:
string - Required: Yes
- Description: clinicianId parameter
Request Body
- Content Type:
application/json - Required: Yes
Fields
| Field | Type | Required | Details |
|---|---|---|---|
| firstName | string | No | |
| lastName | string | No | |
string | No | format: email | |
| licenseNumber | string | No | |
| specialties | string | Yes | |
| credentials | string | Yes | |
| languages | string | Yes | |
| availability | string | No | |
| workingHours | string | Yes | |
| end | string | Yes |
Responses
200
Successful response
Content Type: application/json
{
"message": "string",
"clinicianId": "string",
"updated_at": "string"
}400
Bad Request
Content Type: application/json
{}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X PUT \
https://api.pillexa.com/clinician/profile/update-clinician-profile/<clinicianId> \
-H "Content-Type: application/json" \
-d '{"example": "data"}'