Fetch Enrollee Details
GET/v1/enrollees/single-enrollee
Fetch details of a single enrollee using its id or insurance_no
Request
Query Parameters
The id of the enrollee. it is required if the insurance_no is not supplied
The insurance number of the enrollee. it is required if the id is not supplied
An optional boolean value to indicate if the dependants of the enrollee should be included in the response. Defaults to false
Responses
- 200
- 400
- 401
- 403
- 422
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
Information on response
data object
Information on the enrollee requested
This is the ID of the enrollee.
plan object
Enrollees current plan
company object
Enrollees company
photo object
Enrollees profile image
A thumbnail rendering of enrollee photo
Enrollee full image
primary_provider object
Enrollees primary provider
Code used to identify the provider for your Insurer
insurer object
Enrollees HMO
Code used to identify the Insurer for your provider
{
"message": "string",
"data": {
"id": 0,
"insurance_no": "string",
"firstname": "string",
"lastname": "string",
"middlename": "string",
"sex": "string",
"parent_insurance_no": "string",
"status": "string",
"email": "string",
"phone": "string",
"plan": {
"id": 0,
"name": "string"
},
"company": {
"id": 0,
"name": "string",
"valid_until": "string"
},
"photo": {
"preview_url": "string",
"full_url": "string"
},
"primary_provider": {
"code": "string",
"id": 0,
"name": "string"
},
"insurer": {
"code": "string",
"id": 0,
"name": "string"
}
}
}
Bad Request
Unauthenticated
Forbidden
Unprocessable Entity
Server Error