GET
/
members
curl --request GET \
  --url https://sandbox.withclasp.com/members \
  --header 'Authorization: Bearer <token>'
{
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "dob": "2023-12-25",
      "ssn_last_four": "<string>",
      "email": "jsmith@example.com",
      "phone_number": "<string>",
      "employer": "<string>",
      "address": {
        "line1": "<string>",
        "line2": "<string>",
        "city": "<string>",
        "state": "AL",
        "zip_code": "<string>"
      },
      "enrollments": [
        "<string>"
      ],
      "hire_date": "2023-12-25",
      "termination_date": "2023-12-25",
      "payroll_provider_external_id": "<string>",
      "biological_sex": "male",
      "hours_worked": "<string>",
      "pay_frequency": "weekly",
      "employment_status": "full_time",
      "subclasses": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication with required prefix "Bearer"

Query Parameters

connection
string
cursor
string

The pagination cursor value.

employer
string
line_of_coverage
enum<string>
  • medical - Medical
  • dental - Dental
  • vision - Vision
  • life - Life
  • accidental_death - Accidental Death
Available options:
accidental_death,
dental,
life,
medical,
vision
page_size
integer

Number of results to return per page.

A search term.

Response

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