# Delete a QR Code (DELETE /product/{productId})

Deletes a QR Code.

### Request

* **Method:** `DELETE`
* **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 confirmation payload or the deleted QR Code (implementation-defined).

<details>

<summary>Example 200 response (template)</summary>

```json
{
  "productId": "string"
}
```

</details>

#### 401 Unauthorized

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

{% hint style="info" %}
Check Swagger for the exact status code and response body for this endpoint.
{% endhint %}
