Endpoints
Patient Eligibility Link
Endpoints
Patient Eligibility Link
Link an eligibility request to a specific patient
POST
/
api
/
auth
/
v1
/
patients
/
{patient_code}
/
eligibility
curl --request POST \
--url https://api.anagram.care/api/auth/v1/patients/{patient_code}/eligibility/ \
--header 'Authorization: <api-key>'
{
"request_uid": "<string>",
"provider_app_url": "<string>",
"results": [
{
"insurer_code": "<string>",
"id": 123,
"plan_is_active": true,
"status": "<string>",
"plan_name": "<string>",
"plan_group": "<string>",
"plan_group_id": "<string>",
"plan_begin_date": "2023-12-25",
"plan_end_date": "2023-12-25",
"plan_refresh_date": "2023-12-25",
"persons": [
{
"first_name": "<string>",
"last_name": "<string>",
"dob": "2023-12-25",
"sex": "<string>",
"member_id": "<string>",
"ssn_last_four": "<string>",
"type": "<string>",
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"zipcode": "<string>",
"state": "<string>"
},
"email": "<string>",
"phone": "<string>",
"id": 123,
"full_name": "<string>",
"is_active": true,
"plan": {
"refresh_date": "2023-12-25",
"insurer_state": "<string>",
"begin_date": "2023-12-25",
"end_date": "2023-12-25",
"items": [
{
"code": "<string>",
"copay": 123,
"network_type": "<string>",
"is_authorization_required": true,
"refresh_date": "2023-12-25",
"limits": {
"quantity": 123,
"total_coverage": 123,
"quantity_remain": 123,
"quantity_reserved": 123,
"total_coverage_remain": 123
},
"subitem_limits": [
{
"code": "<string>",
"quantity": 123,
"total_coverage": 123
}
]
}
]
}
}
]
}
]
}
This endpoint ties eligibility request to a specific patient. Use the code
returned from the Create Patient endpoint.
The result will contain a URL to the patient’s profile in the Anagram web app.
Authorizations
Your API token prefaced with an "Api" prefix. Example value: "Api B3F4242424E3FDB4242424242A9C7642"
Path Parameters
Response
200 - application/json
JSON object response
The response is of type object
.
curl --request POST \
--url https://api.anagram.care/api/auth/v1/patients/{patient_code}/eligibility/ \
--header 'Authorization: <api-key>'
{
"request_uid": "<string>",
"provider_app_url": "<string>",
"results": [
{
"insurer_code": "<string>",
"id": 123,
"plan_is_active": true,
"status": "<string>",
"plan_name": "<string>",
"plan_group": "<string>",
"plan_group_id": "<string>",
"plan_begin_date": "2023-12-25",
"plan_end_date": "2023-12-25",
"plan_refresh_date": "2023-12-25",
"persons": [
{
"first_name": "<string>",
"last_name": "<string>",
"dob": "2023-12-25",
"sex": "<string>",
"member_id": "<string>",
"ssn_last_four": "<string>",
"type": "<string>",
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"zipcode": "<string>",
"state": "<string>"
},
"email": "<string>",
"phone": "<string>",
"id": 123,
"full_name": "<string>",
"is_active": true,
"plan": {
"refresh_date": "2023-12-25",
"insurer_state": "<string>",
"begin_date": "2023-12-25",
"end_date": "2023-12-25",
"items": [
{
"code": "<string>",
"copay": 123,
"network_type": "<string>",
"is_authorization_required": true,
"refresh_date": "2023-12-25",
"limits": {
"quantity": 123,
"total_coverage": 123,
"quantity_remain": 123,
"quantity_reserved": 123,
"total_coverage_remain": 123
},
"subitem_limits": [
{
"code": "<string>",
"quantity": 123,
"total_coverage": 123
}
]
}
]
}
}
]
}
]
}