Get Loyalty Tiers Run in API Explorer
Ask AI
The tiers returned are sorted by lowest to highest
GET
/loyalty/{channelLinkId}/tiers
curl \
--request GET 'https://api.staging.deliverect.com/loyalty/{channelLinkId}/tiers' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"name": "Bronze",
"description": "Way to go!",
"media": {
"url": "https://deliverect.com/icon1.png",
"mediaType": "image"
},
"requirements": {
"minLifetimePoints": 0,
"maxLifetimePoints": 1000
}
},
{
"name": "Silver",
"description": "This is a higher tier!",
"media": {
"url": "https://deliverect.com/icon2.png",
"mediaType": "image"
},
"requirements": {
"minLifetimePoints": 1000,
"maxLifetimePoints": 2000
}
}
]
Response examples (400)
{}