Sign Customiser

Retrieve a single length pricing record.

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

Authorisation

Bearer token required. Include in the Authorization header.

Path parameters

customiser string path required

The customiser ID.

Example: 1

length_pricing string path required

The length pricing ID.

Example: 1

Get a length pricing
curl https://web.signcustomiser.com/api/v2/customisers/1/length-pricings/1 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response 200
{
  "length_pricing": {
    "length_pricing_id": 1,
    "selection_id": 1,
    "label": "Standard",
    "pricing_type": "MATERIAL_LENGTH",
    "shipping_calculation": "PHYSICAL",
    "pricings": []
  }
}