List memberships
Return a paginated list of individual memberships for the authenticated group, with optional server-side filters on start date, end date, creation date, amount, contact, and membership price. Ordered by start date (newest first) by default. Maximum limit is 1000.
start_from/start_to, end_from/end_to, or created_from/created_to.
Contacts / prices: repeat or comma-separate contact_id and membership_price_id.
Use end_from/end_to to find memberships expiring within a window (renewal campaigns).Authorizations
OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.
Query Parameters
Maximum number of items to return.
1 <= x <= 1000Number of items to skip.
x >= 0Only memberships starting on or after this date (RFC 3339).
Only memberships starting on or before this date (RFC 3339).
Only memberships ending on or after this date (RFC 3339).
Only memberships ending on or before this date (RFC 3339).
Only memberships created on or after this date (RFC 3339).
Only memberships created on or before this date (RFC 3339).
Minimum amount in cents (inclusive).
x >= 0Maximum amount in cents (inclusive).
x >= 0Filter by one or more contact IDs (repeat or comma-separate).
x >= 0Filter by one or more membership price IDs. See GET /v1/membership_prices.
x >= 0Sort column.
created_at, start_date, end_date, amount Sort direction.
asc, desc 
