API Documentation
Payors
- GETGet Payor
- GETGet Payors
- GETGet Provider Payors
- Payor Inference
Providers
- GETGet Provider
- GETGet Providers
- Service Locations
- Places of Service
Patients
- DELDelete Patient
- GETGet Patient
- PATCHUpdate Patient
- POSTCreate Patient
- GETGet Patients
- PUTCreate or Update Patient
- Places of Service
- Plans
- Diagnoses
Benefit Checks
Prior Authorizations
Patients
Get Patient
GET
/
public
/
v1
/
patients
/
{patient_id}
Copy
curl --request GET \
--url https://api.silnahealth.com/public/v1/patients/{patient_id} \
--header 'Authorization: Bearer <token>'
Copy
{
"first_name": "<string>",
"last_name": "<string>",
"date_of_birth": "2023-12-25",
"source_id": null,
"address_line_1": null,
"address_line_2": null,
"city": null,
"state": null,
"zip_code": null,
"patient_specialties": [
"PHYSICAL_THERAPY"
],
"status": "INTAKE",
"provider_service_location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"patient_code": "<string>",
"patient_diagnosis_ids": null,
"patient_place_of_service_ids": null,
"silna_url": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Patient Response Schema
Patient Response Schema
Copy
curl --request GET \
--url https://api.silnahealth.com/public/v1/patients/{patient_id} \
--header 'Authorization: Bearer <token>'
Copy
{
"first_name": "<string>",
"last_name": "<string>",
"date_of_birth": "2023-12-25",
"source_id": null,
"address_line_1": null,
"address_line_2": null,
"city": null,
"state": null,
"zip_code": null,
"patient_specialties": [
"PHYSICAL_THERAPY"
],
"status": "INTAKE",
"provider_service_location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"patient_code": "<string>",
"patient_diagnosis_ids": null,
"patient_place_of_service_ids": null,
"silna_url": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.