Sign Customiser

Retrieve a single customiser.

GET /api/v2/customisers/{customiser}

Authorisation

Bearer token required. Include in the Authorization header.

Path parameters

customiser string path required

The customiser ID.

Example: 1

Get a customiser
curl https://web.signcustomiser.com/api/v2/customisers/1 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response 200
{
  "customiser": {
    "customiser_id": 1,
    "name": "Storefront neon sign",
    "price_type": "FIXED_WIDTH",
    "product": "NEON",
    "selection_type": "SINGLE",
    "active": true,
    "created_at": "2024-01-01T00:00:00.000000Z",
    "updated_at": "2024-01-01T00:00:00.000000Z"
  }
}