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

Create a QR Code (POST /product)

Create a new QR Code for the authenticated account.

Creates a QR Code ("product").

Request

  • Method: POST

  • Path: /product

  • URL: https://api.qrcake.com/v1/product/product

  • 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": {},
  "expiresAt": 0
}

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

Response

200 OK

Returns the created QR Code object.

Example 200 response

401 Unauthorized

Last updated