Plans
Get Patient Plans
API Documentation
Payors
- GETGet Payor
- GETGet Payors
- GETGet Provider Payors
- Payor Inference
Providers
- GETGet Provider
- GETGet Providers
- Service Locations
- Places of Service
Patients
Benefit Checks
Prior Authorizations
Plans
Get Patient Plans
GET
/
public
/
v1
/
patients
/
{patient_id}
/
patient-plans
curl --request GET \
--url https://api.silnahealth.com/public/v1/patients/{patient_id}/patient-plans \
--header 'Authorization: Bearer <token>'
{
"has_more": true,
"records": [
{
"member_number": "<string>",
"group_number": null,
"start_date": null,
"end_date": null,
"payor_entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"insurance_type": null,
"source_id": null,
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"patient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"plan_order_number": 123,
"plan_eligibility_status": "ACTIVE",
"insurance_card_file_id": null,
"insurance_card_back_file_id": null,
"archived_at": null,
"latest_eligibility_check": null,
"latest_benefits_check": null
}
],
"first_id": null,
"last_id": null
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Response schema for patient plan
Required string length:
2 - 80
The order number of the plan (1 for primary, 2 for secondary, etc)
Available options:
ACTIVE
, INACTIVE
, NO_CHECK
Required string length:
2 - 80
The type of insurance
Available options:
COMMERCIAL
, MEDICARE
, MEDICAID
, REGIONAL_CENTER
, WORKERS_COMPENSATION
, AUTO_INSURANCE
Unique identifier for the patient plan. This is (optionally) generated and supplied by API clients
The file ID corresponding to the front of the insurance card
The file ID corresponding to the back of the insurance card
curl --request GET \
--url https://api.silnahealth.com/public/v1/patients/{patient_id}/patient-plans \
--header 'Authorization: Bearer <token>'
{
"has_more": true,
"records": [
{
"member_number": "<string>",
"group_number": null,
"start_date": null,
"end_date": null,
"payor_entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"insurance_type": null,
"source_id": null,
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"patient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"plan_order_number": 123,
"plan_eligibility_status": "ACTIVE",
"insurance_card_file_id": null,
"insurance_card_back_file_id": null,
"archived_at": null,
"latest_eligibility_check": null,
"latest_benefits_check": null
}
],
"first_id": null,
"last_id": null
}