---
title: "Retrieve a list of members for a membership"
method: GET
path: "/customers/memberships/{membershipId}/members"
tags: ["Memberships"]
---

# Retrieve a list of members for a membership

`GET /customers/memberships/{membershipId}/members`

Returns the list of `MembershipMember`s on the given membership, including their
customer record, membership number and lead-member status.

## Response `200`

The list of `MembershipMember`s for the given membership was successfully retrieved.

- object
  - `data` MembershipMember[], required
    - `membership_number` string, required — The membership number of the member
    - `customer` Customer, required — A guest record — the long-lived profile that bookings, orders, payments, memberships and marketing preferences attach to. Customers are scoped to a site (and, where configured, an organisation) and may have multiple addresses, payment methods and external IDs. Their email is the natural login identifier when self-service is enabled.
      - `id` string, uuid, required — The ID of the customer.
      - `first_name` string, nullable, required — The first name of the customer.
      - `last_name` string, nullable, required — The last name of the customer.
      - `full_name` string, nullable, required — The customer's full name
      - `phone` string, nullable, required — The customer's phone number in E.164 format, or `null` if not provided.
      - `has_password` boolean, required — Whether the user has a password
      - `dob` string, date, nullable, required — The customer's date of birth in YYYY-MM-DD format, or `null` if not provided.
      - `brand_id` string, uuid, required — The ID of the brand this customer belongs to
      - `site_id` string, uuid, required — Identifier of the site the customer was created at. Customer records are scoped per site so each location's CRM data is isolated; cross-site reporting is available via the brand or organisation.
      - `stripe_id` string, nullable, required — The Stripe Customer ID for this customer
      - `express_stripe_id` string, nullable, required — The Stripe Customer ID for this customer if they also exist in Trybe's legacy Stripe integration
      - `email` string, nullable, required — The email address of the customer. The case of the email address is not preserved, so you'll always see this in lowercase.
      - `labels` SchemasCustomerLabel[], required — An array of labels associated with this customer
        - `id` string, uuid, required — The ID of the label
        - `value` string, required — The name of the label
        - `colour` string, required — A hex colour code excluding the preceding \# which this label will be rendered as.
      - `preferred_locale` string, required — The preferred locale of the customer. This must be one of the platform's supported locales, which can be retrieved using the [`listMetaSupportedLocales`](/endpoints/Meta#listMetaSupportedLocales) endpoint.
      - `locked_at` string, date-time, nullable, required — The datetime which the customer was locked, or null if it has not been locked.
      - `created_at` string, date-time, required — The datetime which the customer was created
      - `updated_at` string, date-time, required — The datetime which the customer was last updated
      - `deleted_at` string, date-time, nullable, required — The datetime which the customer was anonymised, or null if it has not been.
      - `last_active_at` string, date-time, nullable, required — The datetime which the customer was last active
      - `email_verified_at` string, date-time, nullable, required — The datetime which the customer verified their email address
      - `last_check_in` LastCheckInSummary, required
        - `checked_in_at` string, date-time, nullable, required — The datetime which the customer was last checked in.
        - `method` string, required — The name of the method used to create this check-in
      - `avatar_id` string, uuid, nullable, required — The media ID of the customer's avatar, or `null` if one hasn't been provided.
      - `avatar` Media, required
        - `id` string, uuid, required — Unique identifier of the uploaded media item, returned from `createMedia`. Pass this ID into any field that accepts a media reference (logos, hero images, product images, etc.).
        - `file_name` string, required — Original filename of the uploaded asset, preserved as provided at upload time. Used for display in the media library and as a hint when serving downloads.
        - `mime_type` string, required — The mime type of the media item.
        - `original_url` string, required — The url of the media resource.
        - `size` integer, required — The size of the media item in bytes.
        - `url` string, required — The url of the converted media resource.
      - `external_ref` string, nullable, required — An external reference for this customer.
    - `is_lead` boolean, required — Whether this customer is the lead customer on the membership
  - `meta` PaginationMeta — Counts and positional information for the current page of a list response. Use `current_page` and `last_page` to drive pagination UI, `total` for result counts, and `per_page` to confirm the page size the server actually applied (which may differ from the requested value when capped).
    - `from` integer, required — The item number from which this results set starts from
    - `to` integer, required — The item number from which this results set ends at
    - `total` integer, required — The total number of results
    - `current_page` integer, required — The current page number
    - `last_page` integer, required — The page number of the last result set
    - `per_page` integer, required — The number of results per page
    - `path` string, required — The path of this api request

## Other responses

- `401` — The user is unauthenticated
- `404` — The resource couldn't be found

---

[API](https://skmtc.dev/try/apis/trybe-api.md) · [All operations](https://skmtc.dev/try/apis/trybe-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/try/trybe-api/revisions/f37f92702da5/schema)
