Sign Customiser

Get length pricing records for a MATERIAL_LENGTH customiser.

GET /api/v2/customisers/{customiser}/length-pricings

Authorisation

Bearer token required. Include in the Authorization header.

Path parameters

customiser string path required

The customiser ID.

Example: 1

List length pricings
curl https://web.signcustomiser.com/api/v2/customisers/1/length-pricings \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response 200
{
  "length_pricings": [
    {
      "length_pricing_id": 1,
      "selection_id": 1,
      "label": "Standard",
      "pricing_type": "MATERIAL_LENGTH",
      "shipping_calculation": "PHYSICAL",
      "volumetric_divisor": null,
      "add_weight_to_product": false,
      "pricings": [
        {
          "base_price": 100,
          "price_per_cm": 2,
          "cm_limit_width": 100,
          "cm_limit_height": 50
        }
      ]
    }
  ]
}