Skip to main content

Health Insurance

Health Insurance API.

This API allows us to manage a patient's health coverage. It enables efficient management of appointments, charging patients for medical procedures that require it, and more.

GET /health_insurance_carriers/

Returns all health insurance carriers supported by the institution

Response:

Code 200

{
"health_insurance_carriers":[
{
"carrier": "OSDE",
"active": "true"
},
{
"carrier": "Swiss Medical",
"active": "true"
}
]
}

GET /health_insurance_carriers/{id}/health_insurance_plans/

Returns all health insurance plans for the specified carrier

URI Parameters

  • id: The Health Insurance Carrier's ID

Response:

Code 200

{
"health_insurance_plans":[
{
"plan": "410",
"active": "true"
},
{
"plan": "310",
"active": "true"
},
{
"plan": "210",
"active": "true"
}
]
}

GET /patients/{id}/health_insurances

Returns all health insurances for the specified patient

URI Parameters

  • id: The Patient's ID

Response:

Code 200

{
"health_insurances":[
{
"id":"45e00934-8516-4c34-a478-eb27a37678a0",
"carrier": "OSDE",
"plan": "410",
"credential_number": "123465/8",
"active": "true"
}
]
}