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:
Response includes:
Filtering:
Use Cases:
Authentication: Customer must be logged in via Shopify customer session
curl --request GET \
--url https://www.myshop.com/apps/subscriptions/cp/api/loyalty-integration/redeem-options[
{
"id": 1,
"name": "$5 Off Coupon",
"description": "Get $5 off your next order",
"pointsCost": 500,
"rewardValue": 5,
"rewardType": "FIXED_AMOUNT",
"canRedeem": true
},
{
"id": 2,
"name": "15% Off Entire Order",
"description": "Get 15% off your entire order",
"pointsCost": 1500,
"rewardValue": 15,
"rewardType": "PERCENTAGE",
"canRedeem": true
}
]Documentation Index
Fetch the complete documentation index at: https://developers.appstle.com/llms.txt
Use this file to discover all available pages before exploring further.
Redemption options retrieved successfully
curl --request GET \
--url https://www.myshop.com/apps/subscriptions/cp/api/loyalty-integration/redeem-options[
{
"id": 1,
"name": "$5 Off Coupon",
"description": "Get $5 off your next order",
"pointsCost": 500,
"rewardValue": 5,
"rewardType": "FIXED_AMOUNT",
"canRedeem": true
},
{
"id": 2,
"name": "15% Off Entire Order",
"description": "Get 15% off your entire order",
"pointsCost": 1500,
"rewardValue": 15,
"rewardType": "PERCENTAGE",
"canRedeem": true
}
]