# Retrieve a list of wine-club members 🚦 Rate Limit: 100 requests / minute Endpoint: GET /wine-club-members Version: 1.2.0 Security: BearerAuth ## Query parameters: - `offset` (integer) Number of records to skip for pagination (default: 0) - `pageSize` (integer) Number of records to return per page (default: 1000, max: 1000) Example: 50 ## Response 200 fields (application/json): - `data` (array) - `data.customer_id` (string) Example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890" - `data.member_id` (integer) Example: 1001 - `data.first_name` (string) Example: "Audrey" - `data.last_name` (string) Example: "Horne" - `data.email` (string) Example: "audrey.horne@horneindustries.com" - `data.phone` (string) Example: "+1-509-555-0198" - `data.date_of_birth` (string) Example: "1973-08-15" - `data.club_details` (object) JSON object containing wine club membership details - `data.billing_address` (object) JSON object containing billing address information - `data.shipping_address` (object) JSON object containing shipping address information - `data.payment_method` (object) JSON object containing payment method details - `data.spouse_details` (object) JSON object containing spouse information if applicable - `data.status` (string) Example: "active" - `data.order_delivery_method` (string) Example: "shipping" - `data.location_details` (object) JSON object containing location-specific details - `data.package_type` (string) Example: "6 bottles" - `data.associate` (string) - `data.created_at` (string) Example: "2023-09-03T14:57:02Z" - `data.signup_date` (string) Example: "2023-09-01" - `data.cancel_date` (string) Example: "2025-01-01" - `data.cancellation_reason` (string) Example: "Customer requested cancellation" - `data.hold_date` (string) Example: "2025-01-01" - `data.package_details` (array) - `data.package_details.package_id` (string) Example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890" - `data.package_details.package_number` (integer) Example: 2025001 - `data.package_details.opened_date` (string) Example: "2025-01-01" - `data.package_details.canceled_date` (string) Example: "2025-01-01" - `data.package_details.skipped_date` (string) Example: "2025-01-01" - `data.package_details.is_selection_completed` (boolean) Example: true - `data.package_details.delivery_status` (string) Example: "shipped" - `data.package_details.financial_status` (string) Example: "paid" - `data.package_details.products` (array) - `data.package_details.products.variant_id` (string) Example: "f4a71b9d-17a9-4100-8110-46e133d6fc1b" - `data.package_details.products.variant_name` (string) Example: "750 ml Bottle" - `data.package_details.products.product_id` (string) Example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890" - `data.package_details.products.product_name` (string) Example: "Black Lodge Chardonnay 2022" - `data.package_details.products.quantity` (integer) Example: 2 - `data.package_details.products.sku` (string) Example: "BL-CHA-2022-750" - `pagination` (object) - `pagination.current_offset` (integer) - `pagination.page_size` (integer) Example: 50 - `pagination.total_records` (integer) Example: 1250 - `pagination.total_pages` (integer) Example: 25 - `pagination.current_page` (integer) Example: 1 - `pagination.pages_remaining` (integer) Example: 24 - `pagination.has_next_page` (boolean) Example: true - `pagination.has_previous_page` (boolean)