Pricing - Font Tiers
Update a font tier
Update a font tier pricing record. Each tier must reference a size that belongs to the customiser.
Authorisation
Bearer token required. Include in the
Authorization header.
Path parameters
customiser required
The customiser ID.
Example: 1
font_tier required
The font tier ID.
Example: 1
Request body
label
tiers
Request body example
application/json
{
"label": "Premium",
"tiers": [
{
"sizeId": 1,
"basePrice": {
"line1": 100,
"line2": 120,
"line3": 140,
"line4": 160,
"line5": 180,
"line6": 200
},
"letterPrice": {
"line1": 10,
"line2": 12,
"line3": 14,
"line4": 16,
"line5": 18,
"line6": 20
}
}
]
} Update a font tier
curl https://web.signcustomiser.com/api/v2/customisers/1/font-tiers/1 \
--request PUT \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"label": "Premium",
"tiers": [
{
"sizeId": 1,
"basePrice": {
"line1": 100,
"line2": 120,
"line3": 140,
"line4": 160,
"line5": 180,
"line6": 200
},
"letterPrice": {
"line1": 10,
"line2": 12,
"line3": 14,
"line4": 16,
"line5": 18,
"line6": 20
}
}
]
}' Response 200
{
"font_tier": {
"font_tier_id": 1,
"selection_id": 1,
"label": "Premium",
"tiers": []
}
}