Tiers
Fetch all tiers and corresponding benefits for the program linked to the API key used in the request.
get
Tiers represent a status level that a user can achieve based on their activity within a loyalty program. Each tier has a minimum threshold that a user must reach before being able to unlock the tier.
Authorizations
Responses
200
Successful response
application/json
500
Something unexpected happened while trying to retrive the tier benefits.
get
GET /partner-api/programs/tiers HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Accept: */*
{
"tiers": [
{
"id": "text",
"order": 1,
"tier_metric_minimum_threshold": 1,
"display_name": "text",
"marketing_benefit_text": "text",
"image_url": "text",
"benefits": {
"id": "text",
"order": "text",
"text": "text",
"short_text": "text"
}
}
]
}