# GET Show product selections

Return the Store-local option ids captured for a modern product. Stable integer `value` fields are separate from merchant-editable `display_name` labels. Canonical axes include `letter_type` and `support_finish`; the latter may report `finish_kind` and `colour_hex`. Lookups are restricted to the product customiser, so stale or foreign option ids become null or are omitted. Requires `products:read` and has no side effects. Unknown and foreign product ids share one 404 response.

- Source URL: https://www.signcustomiser.com/help/api/v3-get-show-product-selections/
- Markdown URL: https://www.signcustomiser.com/help/api/v3-get-show-product-selections.md
- Group: Products
- Method: GET
- Path: /api/v3/products/{product_id}/selections
- Auth: Bearer token
- Required scopes: `products:read`

## Path parameters

- product_id (string, required): Product id returned by the list operation. Example: 731

## cURL example

```bash
curl https://web.signcustomiser.com/api/v3/products/731/selections \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

## Response examples

### 200 GET 200 example 1

```json
{
  "data": {
    "object": "product_selections",
    "product_id": 731,
    "letter_type": {
      "value": 18,
      "display_name": "Front and halo lit"
    },
    "size": {
      "value": 9,
      "display_name": "Medium",
      "width_cm": 80.5,
      "height_cm": 31.5,
      "length_cm": 2.5
    },
    "support": {
      "value": 4,
      "display_name": "Cut to shape"
    },
    "support_finish": {
      "value": 27,
      "display_name": "Gloss black",
      "finish_kind": "colour",
      "colour_hex": "#111111"
    },
    "jacket": {
      "value": 3,
      "display_name": "White jacket"
    },
    "mounting": {
      "value": 6,
      "display_name": "Wall mounted"
    },
    "mounting_colour": {
      "value": 7,
      "display_name": "Black"
    },
    "backlight": {
      "value": 8,
      "display_name": "Warm white"
    },
    "material": {
      "value": 9,
      "display_name": "Acrylic"
    },
    "colours": [
      {
        "value": 12,
        "display_name": "Warm white"
      }
    ],
    "fonts": [
      {
        "value": 5,
        "display_name": "Signature"
      }
    ]
  },
  "links": {
    "self": "https://web.signcustomiser.com/api/v3/products/731/selections",
    "documentation": "https://www.signcustomiser.com/help/api/"
  },
  "meta": {
    "api_version": "v3",
    "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
  }
}
```

### 401 Missing or invalid 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 products:read scope.",
  "required_scopes": [
    "products:read"
  ],
  "granted_scopes": [],
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```

### 404 Unknown or foreign product

```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 Unknown query parameter

```json
{
  "type": "https://www.signcustomiser.com/help/api/problems/unknown_parameter",
  "title": "Unknown query parameter",
  "status": 422,
  "code": "unknown_parameter",
  "detail": "This endpoint accepts no query parameters.",
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```

### 429 Rate limited

```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": 60,
  "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
}
```
