Skip to main content
GET
/
api
/
v1
/
employees
/
{employee_id}
/
individual_enrollments
Get a list of all Individual Enrollments for an Employee
curl --request GET \
  --url https://fulfillment.noyo.com/api/v1/employees/{employee_id}/individual_enrollments \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "offset": 1,
    "page_num": 2,
    "page_size": 2,
    "total_records": 1
  },
  "response": [
    {
      "cobra_enrollment": {
        "cobra_enrolled": true,
        "cobra_type": "federal"
      },
      "created": 123,
      "enroll_data": {},
      "group_enrollment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "individual_enrollment_configuration": {},
      "individual_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "individual_type": "employee",
      "line_of_coverage": "dental",
      "modified": 123,
      "plan_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "active",
      "version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "cobra_details": {
        "eligibility_start_date": "2023-12-25",
        "eligibility_end_date": "2023-12-25",
        "qualifying_event_date": "2023-12-25",
        "qualifying_event_reason": "termination_of_employment"
      },
      "effective_end_date": "2017-01-17",
      "effective_start_date": "2017-01-17",
      "pcp_details": {
        "providers": [
          {
            "identification_code": "<string>",
            "identification_code_type": "service_provider_number",
            "entity_identifier_code": "pcp",
            "entity_type": "person",
            "first_name": "<string>",
            "last_name": "<string>",
            "middle_name": "<string>",
            "organization_name": "<string>",
            "patient_relationship_code": "established"
          }
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

employee_id
string<uuid>
required

The unique identifier of the employee for which you would like to view individual enrollments

Example:

"30b74a44-d5b1-4123-a7a4-6d3aec251ba4"

Query Parameters

effective_date
string

The relative date on which to view the state of the record

include_dependents
string

Boolean, use "true" to include dependent individual enrollments in the results

page_size
integer

The max size of each page of results

offset
integer

The integer offset at which to start the page. Possible values are 0 to total_records - 1

Response

200 - application/json

Successful Response - Returns all matching Individual Enrollments

meta
object
required

Metadata associated with the response data

response
object[]
required

List of individual enrollment results