Authorization
string
required
Example:
Authorization | Bearer Paste-Your-API-Key-HereQuery Parameters
string
required
The unique identifier of the membership product whose members you want to list.
If missing or malformed the endpoint responds
400 "Invalid query parameters".string
Filter members by a search term (for example a customer name or email).
string
Start of the date range to filter by.
string
End of the date range to filter by.
boolean
When set, filters churned members. When this filter is used the response also
includes a
totalMember sibling field alongside data.integer
default:"10"
Number of items to return per page. Defaults to
10, with a maximum of 50.string
Cursor for forward pagination. Pass the
nextStartingAfter value from the
previous response (a Unix timestamp in milliseconds, as a string) to fetch the
next page.Response
Successful ResponseMain Structure (Root)
integer
Status code form API.
string
Status message that describes the status code.
array of object
List of membership members for the product.
boolean
Information on whether there is additional data to be retrieved (true/false).
string | null
Cursor to pass as
startingAfter to fetch the next page. null when there is
no further data.integer
Total number of members. Only present when the
isChurnedMember filter is used.data Structure (Array Of Object)
Each member row carries the membership-customer fields plus a few flattened, dotted-key columns for the related tier and customer.string<uuid>
Unique identifier of the membership-customer record.
string
ISO 8601 timestamp (UTC) of when the member was created.
string<uuid>
Unique identifier of the customer.
string<uuid>
Unique identifier of the member’s tier.
string
ISO 8601 timestamp (UTC) of the member’s next scheduled payment.
string
Current status of the member (for example
active, inactive).string
ISO 8601 timestamp (UTC) of the last update.
string<uuid>
The user ID of the owner of the product.
string
Public membership code of the member.
string
Name of the member’s tier (flattened dotted-key column).
string
Grace-period days of the member’s tier, as a string (flattened dotted-key column).
string
Name of the customer (flattened dotted-key column).
string
Mobile number of the customer (flattened dotted-key column).
string
Email address of the customer (flattened dotted-key column).
Errors
object
Returned with
messages: "Invalid query parameters" when productId is missing
or the query parameters fail validation.