Sign Customiser

Create a size pricing record. FIXED_WIDTH sizes accept char_limit, line_limit, width_cm, min_char, height_strategy, and line_height_cm. MATERIAL_LENGTH sizes require width_multiplier. FRAME_FIT sizes require width_cm and height_cm.

POST /api/v2/customisers/{customiser}/sizes

Authorisation

Bearer token required. Include in the Authorization header.

Path parameters

customiser string path required

The customiser ID.

Example: 1

Request body

label string body
description string body
char_limit integer body
line_limit integer body
width_cm integer body
height_cm integer body
min_char integer body
height_strategy string body
line_height_cm integer body
width_multiplier number body
length_cm integer body

Request body example

application/json
{
  "label": "Small",
  "description": "Up to 50cm wide",
  "char_limit": 20,
  "line_limit": 3,
  "width_cm": 50,
  "height_cm": 30,
  "min_char": 1,
  "height_strategy": "WIDTH",
  "line_height_cm": 12,
  "width_multiplier": 1.2,
  "length_cm": 100
}
Create a size
curl https://web.signcustomiser.com/api/v2/customisers/1/sizes \
  --request POST \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "label": "Small",
  "description": "Up to 50cm wide",
  "char_limit": 20,
  "line_limit": 3,
  "width_cm": 50,
  "height_cm": 30,
  "min_char": 1,
  "height_strategy": "WIDTH",
  "line_height_cm": 12,
  "width_multiplier": 1.2,
  "length_cm": 100
}'
Response 200
{
  "size": {
    "size_id": 1,
    "selection_id": 1,
    "label": "Small",
    "width_cm": 50,
    "sort_order": 1
  }
}