Skip to main content
GET
/
api
/
v1
/
individual_enrollments
/
{individual_enrollment_id}
Get a single Individual Enrollment
curl --request GET \
  --url https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id} \
  --header 'Authorization: Bearer <token>'
{
  "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

individual_enrollment_id
string<uuid>
required

Unique identifier of the individual enrollment

Example:

"6670f290-4236-4690-bece-a110f9ad924b"

Query Parameters

effective_date
string

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

Response

200 - application/json

Successful Response - Returns a single Individual Enrollment

cobra_enrollment
object
required

Details about the member COBRA enrollment status, if applicable

created
integer
required

The date the record was created

enroll_data
object
required

Line of coverage specific enroll data with volume information

group_enrollment_id
string<uuid>
required

Unique identifier of the group enrollment in Noyo

id
string<uuid>
required

Unique identifier of the record in Noyo

individual_enrollment_configuration
object
required

Carrier-specific details describing the individual enrollment configuration

individual_id
string<uuid>
required

Unique identifier of the employee or dependent in Noyo

individual_type
enum<string>
required

Type of member for the individual enrollment

Available options:
dependent,
employee
Example:

"employee"

line_of_coverage
enum<string>
required

Line of coverage for the individual enrollment

Available options:
medical,
dental,
vision,
life,
add,
std,
ltd,
accident,
critical_illness,
cancer,
health_fund,
hospital_indemnity,
pharmacy,
wellness
Example:

"dental"

modified
integer
required

The date the record was last updated

plan_id
string<uuid>
required

Unique identifier of the group plan in Noyo

status
enum<string>
required

Status of the individual enrollment

Available options:
pending,
active,
waived,
terminated
Example:

"active"

version
string<uuid>
required

Current version of the record

cobra_details
object
effective_end_date
string<date>

ISO-8601 date string for the effective date of the coverage

Example:

"2017-01-17"

effective_start_date
string<date>

ISO-8601 date string for the effective date of the coverage

Example:

"2017-01-17"

pcp_details
object