# GET List customisers

Get all customisers for the current organisation.

- Source URL: https://www.signcustomiser.com/help/api/get-list-customisers/
- Markdown URL: https://www.signcustomiser.com/help/api/get-list-customisers.md
- Group: Customisers
- Method: GET
- Path: /api/v2/customisers
- Auth: Bearer token

## cURL example

```bash
curl https://web.signcustomiser.com/api/v2/customisers \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

## Response examples

### 200 GET 200 example 1

```json
{
  "customisers": [
    {
      "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"
    }
  ]
}
```
