# List QR Codes (GET /user/product)

Lists the QR Codes accessible to the API key.

### Request

* **Method:** `GET`
* **Path:** `/user/product`
* **URL:** `https://api.qrcake.com/v1/product/user/product`
* **Headers:**
  * `Authorization: Bearer <API Key>`
  * `Accept: application/json`

### Response

#### 200 OK

Returns an array of QR Code objects.

<details>

<summary>Example 200 response</summary>

```json
[
  {
    "accountId": "string",
    "productId": "string",
    "userId": "string",
    "redirect": "string",
    "state": "ACTIVE",
    "metadata": {},
    "createdAt": 0,
    "updatedAt": 0
  }
]
```

</details>

#### 401 Unauthorized

<details>

<summary>Example 401 response</summary>

```json
{
  "message": {}
}
```

</details>

### Notes

* In the Swagger docs, **“products” = QR Codes**.
