Create New Clinician Profile
Creates a new clinician profile including credentials, coverage, rates, languages, SLA, and optional external network integration.
Overview
- Method: POST
- Path:
/clinician/profile/create-clinician-profile - Tags: clinician
Parameters
No parameters required.
Request Body
- Content Type:
application/json - Required: Yes
Fields
| Field | Type | Required | Details |
|---|---|---|---|
| firstName | string | Yes | |
| lastName | string | Yes | |
string | Yes | format: email | |
| licenseNumber | string | Yes | |
| specialties | string | Yes | |
| credentials | string | Yes | |
| languages | string | Yes | |
| availability | string | Yes | |
| workingHours | string | Yes | |
| end | string | Yes |
Responses
200
Successful response
Content Type: application/json
{
"id": "string",
"firstName": "string",
"lastName": "string",
"email": "user@example.com",
"licenseNumber": "string",
"specialties": "string",
"credentials": "string",
"languages": "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 POST \
https://api.pillexa.com/clinician/profile/create-clinician-profile \
-H "Content-Type: application/json" \
-d '{"example": "data"}'