# Get a QR Code (GET /product/{productId})

Fetches one QR Code.

### Request

* **Method:** `GET`
* **Path:** `/product/{productId}`
* **URL:** `https://api.qrcake.com/v1/product/product/{productId}`
* **Path params:**
  * `productId` (string)
* **Headers:**
  * `Authorization: Bearer <API Key>`
  * `Accept: application/json`

### Response

#### 200 OK

Returns a QR Code object.

<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

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