Sign Customiser

Retrieve a single size pricing record.

GET /api/v2/customisers/{customiser}/sizes/{size}

Authorisation

Bearer token required. Include in the Authorization header.

Path parameters

customiser string path required

The customiser ID.

Example: 1

size string path required

The size ID.

Example: 1

Get a size
curl https://web.signcustomiser.com/api/v2/customisers/1/sizes/1 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response 200
{
  "size": {
    "size_id": 1,
    "selection_id": 1,
    "label": "Small",
    "width_cm": 50,
    "sort_order": 1
  }
}