Carrier Census
Ideon returns the data the Carrier has in their system on any given day so we can fully close the loop on the state of enrollment transactions.
The Census Requests API
GET coverage_periods/:id/census_requests?as_of=2021-05-01
{
"census_request": {
"id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f",
"status": "synced",
"errors": [],
"coverage_period_id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f",
"created_at": "2021-04-31T14:34:56.231Z"
}
}GET /census_requests/:id/subscribers
{
"subscribers": [
{
"subscriber": {
"location_id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f",
"class": {
"employment_classification_id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f",
"effective_date": "2021-01-01"
},
"social_security_number": "222222222",
"first_name": "John",
"middle_name": "M",
"last_name": "Smith",
"birth_date": "1980-05-10",
"marital_status": "single",
"gender": "male",
"dependents": [],
"emails": [
{
"contact": "user@example.com",
"type": "personal"
}
],
"employment_details": {
"start_date": "2021-01-01",
"status": "full_time"
},
"external_identifier": "ABC-132A54",
"id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f",
"phone_numbers": [
{
"contact": "2025551234",
"type": "home"
}
],
"residential_address": {
"address_line_1": "50 Orchard Street",
"address_line_2": "Apt 4H",
"city": "Kansas City",
"state": "MO",
"zip": "64108"
},
"current_qualifying_life_events": [
{
"event": "initial_enrollment",
"date": "2021-05-10",
"external_identifier": "ABC-132A54",
"eligibility_start_date": "2021-05-10",
"coverage_period_id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f",
"plan_elections": {
"medical": {
"plan_id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f",
"type": "election",
"coverages": [
{
"member_id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f",
"start_date": "2020-01-01",
"status": "employer_sponsored"
}
]
}
},
"id": "a37ecd06-5d97-46e4-9b4e-dcde6a03246f"
}
]
}
}
]
}Last updated
Was this helpful?