Pricing - Font Tiers
List font tiers
Get font tier pricing records for a customiser.
Authorisation
Bearer token required. Include in the
Authorization header.
Path parameters
customiser required
The customiser ID.
Example: 1
List font tiers
curl https://web.signcustomiser.com/api/v2/customisers/1/font-tiers \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_TOKEN' Response 200
{
"font_tiers": [
{
"font_tier_id": 1,
"selection_id": 1,
"label": "Standard",
"tiers": [
{
"size_id": 1,
"base_price": {
"line1": 100,
"line2": 120,
"line3": 140
},
"letter_price": {
"line1": 10,
"line2": 12,
"line3": 14
}
}
]
}
]
}