GET
/
enrollments
curl --request GET \
  --url https://sandbox.withclasp.com/enrollments \
  --header 'Authorization: Bearer <token>'
{
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "enrolled_plans": [
        {
          "id": "<string>",
          "plan": "<string>",
          "premium": "<string>",
          "employer_contribution": "<string>",
          "member_contribution": "<string>",
          "payroll_provider_external_id": "<string>",
          "enrolled_dependents": [
            {
              "id": "<string>",
              "plan": "<string>",
              "dependent": "<string>",
              "primary_care_provider": {
                "id": "<string>",
                "full_name": "<string>",
                "is_existing_patient": true,
                "provider_id_number": "<string>"
              }
            }
          ],
          "primary_care_provider": {
            "id": "<string>",
            "full_name": "<string>",
            "is_existing_patient": true,
            "provider_id_number": "<string>"
          },
          "effective_start": "2023-12-25",
          "effective_end": "2023-12-25"
        }
      ],
      "member": "<string>",
      "reason": "new_child",
      "category": "qle",
      "effective_start": "2023-12-25",
      "effective_end": "2023-12-25",
      "status": "<any>",
      "created_at": "2023-11-07T05:31:56Z",
      "coverage_waivers": [
        {
          "line_of_coverage": "medical",
          "reason": "covered_as_dependent",
          "member": "<string>",
          "dependent": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication with required prefix "Bearer"

Query Parameters

cursor
string

The pagination cursor value.

page_size
integer

Number of results to return per page.

plan
string

Response

200 - application/json
next
string | null
previous
string | null
results
object[]