Sign Customiser

Customiser legacy fixed-height sizes

Get a legacy fixed-height size

Copy page

Returns one of the customiser's legacy fixed-height sizes. Requires customisers:read and is safe to retry.

GET/api/v3/customisers/{customiser_id}/legacy-fixed-height-sizes/{legacy_size_id}

Overview

These ids come from a different sequence than current sizes, so an id from one resource never resolves on the other, and a size belonging to another customiser or another store is indistinguishable from an unknown id.

Authorisation

Bearer token required. Include it in theAuthorization header.

Required scope: customisers:read

Path parameters

customiser_idstringpathrequired

The customiser id.

Example: 1

legacy_size_idstringpathrequired

The legacy fixed-height size id, from the list operation.

Example: 4

Get a legacy fixed-height size
curl https://web.signcustomiser.com/api/v3/customisers/1/legacy-fixed-height-sizes/4 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response
{
  "data": {
    "object": "legacy_fixed_height_size",
    "id": 4,
    "customiser_id": 42,
    "name": "30cm high",
    "description": null,
    "char_limit": 12,
    "line_limit": 1,
    "min_char": 1,
    "height_cm": 30,
    "sort_order": 1,
    "created_at": "2026-08-13T00:00:00Z",
    "updated_at": "2026-08-13T00:00:00Z"
  },
  "links": {
    "self": "https://web.signcustomiser.com/api/v3/customisers/42/legacy-fixed-height-sizes/4",
    "documentation": "https://www.signcustomiser.com/help/api/"
  },
  "meta": {
    "api_version": "v3",
    "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
  }
}