For the complete documentation index, see llms.txt. This page is also available as Markdown.

Update a QR Code (PUT /product/{productId})

Update an existing QR Code by productId.

Updates a QR Code ("product").

Request

Path: /permission

  • Method: PUT

  • URL: https://api.qrcake.com/v1/product/product/{productId}

  • Path params:

    • productId (string)

  • Headers:

    • Authorization: Bearer <API Key>

    • Content-Type: application/json

    • Accept: application/json

  • Body: must be stringified.

Example request body (template)
{
  "redirect": "https://example.com",
  "metadata": {},
  "state": "ACTIVE"
}

The exact request schema is defined in Swagger. The template above shows the common shape.

Response

200 OK

Returns the updated QR Code object.

Example 200 response

401 Unauthorized

Last updated