# Get available loyalty point redemption options Returns all available rewards that the customer can redeem their loyalty points for. This shows customers what they can spend their points on. Common Redemption Options: - Discount codes (e.g., $5 off for 500 points) - Percentage discounts (e.g., 10% off for 1000 points) - Free shipping rewards - Free products or samples - Exclusive access to sales Response includes: - Redemption option ID - Name and description - Points cost - Reward value (dollar amount or percentage) - Availability (minimum purchase, restrictions) - Whether customer has enough points Filtering: - Only shows active redemption options - Filters based on customer's tier/VIP level - Shows whether customer has sufficient points Use Cases: - Display 'Redeem Points' section in customer portal - Show available rewards in checkout - Encourage customers to save points for bigger rewards Authentication: Customer must be logged in via Shopify customer session Endpoint: GET /subscriptions/cp/api/loyalty-integration/redeem-options Version: 0.0.1 ## Response 401 fields (*/*): - `id` (integer) - `icon` (string) - `pointsCostText` (string) - `description` (string) - `type` (string) - `name` (string) - `requiredMinimumPointsToRedeem` (number) - `requiredMaximumPointsToRedeem` (number) - `enableMinimumPointsToRedeem` (boolean) - `enableMaximumPointsToRedeem` (boolean) - `minimumPointsLabel` (string) - `maximumPointsLabel` (string) ## Response 200 fields