# PATCH Update a customiser

Applies an RFC 7396 JSON Merge Patch to one customiser's metadata: properties omitted from the body are unchanged and an empty object `{}` is a valid no-op. Two properties are patchable — `name`, and `selection_mode`, which decides whether the shopper styles the whole sign as one unit (`single_style`) or each word separately (`per_word`). Everything else a read publishes is read-only here: `active` moves only through the activate and deactivate operations, and the prototype's choices (`pricing_model`, `sign_category`, `product_family`) are fixed once the customiser exists. Naming one is a 422 with a pointer rather than a silent no-op. The pricing model in particular is deliberately not changeable: it would strand the price lists and sizes the customiser already holds. Switching to `per_word` also turns on multiple fonts and multiple colours, exactly as the merchant admin does, because per-word styling is what those settings serve. It is refused with a 422 `selection_mode_not_available` when the sign is cut as one piece (a lightbox, a metal cut-out, or a stencil) or the store's plan does not include per-word styling; `reason` says which. A successful update clears the customiser's cached storefront configuration and resynchronises translated content. It never regenerates your Shopify products, product images, or product cache. An `Idempotency-Key` is optional here, as on the option families' update operations: sending one makes the update safe to retry. Requires `customisers:write`.

- Source URL: https://www.signcustomiser.com/help/api/v3-patch-update-a-customiser/
- Markdown URL: https://www.signcustomiser.com/help/api/v3-patch-update-a-customiser.md
- Group: Customisers
- Method: PATCH
- Path: /api/v3/customisers/{customiser_id}
- Auth: Bearer token
- Required scopes: `customisers:write`

## Path parameters

- customiser_id (string, required): The customiser id, from the list operation. Example: 1

## Body parameters

- name (string, optional): No description provided.
- selection_mode (string, optional): No description provided.

## Request body example

```json
{
  "name": "Neon sign builder",
  "selection_mode": "per_word"
}
```

## cURL example

```bash
curl https://web.signcustomiser.com/api/v3/customisers/1 \
  --request PATCH \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Neon sign builder",
  "selection_mode": "per_word"
}'
```

## Response examples

### 200 PATCH 200 example 1

```json
{
  "data": {
    "object": "customiser",
    "id": 42,
    "name": "Neon sign builder",
    "active": true,
    "pricing_model": "frame_fit",
    "pricing_model_display_name": "Frame Fit",
    "sign_category": "neon",
    "product_family": "neon",
    "selection_mode": "per_word",
    "created_at": "2026-08-14T00:00:00Z",
    "updated_at": "2026-08-14T00:05:00Z"
  },
  "links": {
    "self": "https://web.signcustomiser.com/api/v3/customisers/42",
    "documentation": "https://www.signcustomiser.com/help/api/"
  },
  "meta": {
    "api_version": "v3",
    "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
  }
}
```

### 400 Malformed JSON body

```json
{
  "type": "https://www.signcustomiser.com/help/api/problems/malformed_json",
  "title": "Malformed JSON",
  "status": 400,
  "code": "malformed_json",
  "detail": "The request body is not valid JSON: Syntax error.",
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```

### 401 Missing API key

```json
{
  "type": "https://www.signcustomiser.com/help/api/problems/missing_api_key",
  "title": "Missing API key",
  "status": 401,
  "code": "missing_api_key",
  "detail": "Provide a store API key as a bearer token.",
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```

### 403 Insufficient scope

```json
{
  "type": "https://www.signcustomiser.com/help/api/problems/insufficient_scope",
  "title": "Insufficient scope",
  "status": 403,
  "code": "insufficient_scope",
  "detail": "This operation requires the customisers:write scope.",
  "required_scopes": [
    "customisers:write"
  ],
  "granted_scopes": [
    "customisers:read"
  ],
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```

### 404 Unknown customiser

```json
{
  "type": "https://www.signcustomiser.com/help/api/problems/resource_not_found",
  "title": "Resource not found",
  "status": 404,
  "code": "resource_not_found",
  "detail": "The requested resource does not exist or does not belong to the authenticated store.",
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```

### 422 Read-only field

```json
{
  "type": "https://www.signcustomiser.com/help/api/problems/validation_failed",
  "title": "Validation failed",
  "status": 422,
  "code": "validation_failed",
  "detail": "The request payload failed validation.",
  "errors": [
    {
      "pointer": "/active",
      "code": "prohibited",
      "detail": "The active field is read-only here: use the activate and deactivate operations to change it."
    }
  ],
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```

### 422 Styling mode unavailable

```json
{
  "type": "https://www.signcustomiser.com/help/api/problems/selection_mode_not_available",
  "title": "Selection mode not available",
  "status": 422,
  "code": "selection_mode_not_available",
  "detail": "This customiser cuts its sign as one piece, so the whole sign is styled as one unit and per-word styling cannot be offered.",
  "errors": [
    {
      "pointer": "/selection_mode",
      "code": "selection_mode_not_available",
      "detail": "This customiser cuts its sign as one piece, so the whole sign is styled as one unit and per-word styling cannot be offered."
    }
  ],
  "reason": "sign_category_styles_one_piece",
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```

### 429 Option write budget exhausted

```json
{
  "type": "https://www.signcustomiser.com/help/api/problems/rate_limited",
  "title": "Too many requests",
  "status": 429,
  "code": "rate_limited",
  "detail": "You have exceeded the request limit for this API key.",
  "retry_after": 37,
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```
