curl --request GET \
--url https://api.axlehealth.com/api/v2-stable/clinicians/{id}
{
"clinician_id": "35acf466-a3ae-459c-88cf-51e66c22a8ea",
"is_active": true,
"first_name": "John",
"last_name": "Doe",
"email": "johndoe@example.com",
"phone": "+19857981345",
"address": {
"line1": "123 Main St",
"line2": "",
"city": "Los Angeles",
"state": "CA",
"zip_code": "81001"
},
"default_shift_options": {
"mobile_territories": [],
"virtual_territories": []
},
"language_codes": [
"en",
"es",
"fr"
],
"qualifications": [
{
"qualification_id": "acace676-b0e1-4a0a-93ab-fdb0ed449149"
},
{
"qualification_id": "2c08c54d-93d7-4869-b630-b64f5e96ea3e"
}
],
"payers": [
{
"payer_id": "e3b3d4f4-7e0e-44ec-94c4-f3bc17eb52f8"
}
]
}
Retrieves the full details of a specified clinician. The clinician ID is required in the path.
curl --request GET \
--url https://api.axlehealth.com/api/v2-stable/clinicians/{id}
{
"clinician_id": "35acf466-a3ae-459c-88cf-51e66c22a8ea",
"is_active": true,
"first_name": "John",
"last_name": "Doe",
"email": "johndoe@example.com",
"phone": "+19857981345",
"address": {
"line1": "123 Main St",
"line2": "",
"city": "Los Angeles",
"state": "CA",
"zip_code": "81001"
},
"default_shift_options": {
"mobile_territories": [],
"virtual_territories": []
},
"language_codes": [
"en",
"es",
"fr"
],
"qualifications": [
{
"qualification_id": "acace676-b0e1-4a0a-93ab-fdb0ed449149"
},
{
"qualification_id": "2c08c54d-93d7-4869-b630-b64f5e96ea3e"
}
],
"payers": [
{
"payer_id": "e3b3d4f4-7e0e-44ec-94c4-f3bc17eb52f8"
}
]
}
The ID of the clinician to retrieve.
Successful retrieval of clinician details
The response is of type object
.