Get Referring Physician¶
Retrieve a single referring physician record by ID.
Endpoint¶
Path Parameters¶
| Parameter | Type | Required | Description |
|---|---|---|---|
id |
integer | Yes | The ref_physician_id of the referring physician |
Request¶
curl --location '{base_url}/apis/v1/referring-physician/5012' \
--header 'Authorization: Bearer JWT_TOKEN'
Response¶
Success Response¶
Code: 200 OK
{
"code": 2000,
"data": {
"ref_physician_id": 5012,
"first_name": "Robert",
"last_name": "Chen",
"middle_name": "James",
"npi": "1234567890",
"degree": "MD",
"title": "Dr.",
"full_name": "Robert Chen",
"speciality": "Orthopedics",
"taxonomy_code": "207X00000X",
"fax_number": "5551234567",
"phone_number": "555 123 4567",
"address1": "456 Medical Center Dr",
"address2": "Suite 300",
"city": "Chicago",
"state": "IL",
"zip": "60601",
"office_name": "Chicago Ortho Group",
"group_name": null,
"email": "rchen@chicagoortho.example.com",
"clinic_id": 44,
"org_id": 74
},
"message": "Success"
}
Response Fields¶
| Field | Type | Description |
|---|---|---|
ref_physician_id |
integer | Unique referring physician ID |
first_name |
string | Physician's first name |
last_name |
string | Physician's last name |
middle_name |
string | Physician's middle name |
npi |
string | National Provider Identifier |
degree |
string | Medical degree (e.g. MD, DO) |
title |
string | Title prefix (e.g. Dr.) |
full_name |
string | Concatenated full name |
speciality |
string | Medical speciality |
taxonomy_code |
string | Provider taxonomy code |
fax_number |
string | Fax number |
phone_number |
string | Phone number |
address1 |
string | Street address line 1 |
address2 |
string | Street address line 2 |
city |
string | City |
state |
string | 2-letter state code |
zip |
string | ZIP code |
office_name |
string | Office or practice name |
group_name |
string | Group practice name |
email |
string | Email address |
clinic_id |
integer | Associated clinic ID |
org_id |
integer | Organisation ID |
Error Response¶
Code: 200 OK