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

List QR Codes (GET /user/product)

List all QR Codes for the authenticated account.

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.

Example 200 response
[
  {
    "accountId": "string",
    "productId": "string",
    "userId": "string",
    "redirect": "string",
    "state": "ACTIVE",
    "metadata": {},
    "createdAt": 0,
    "updatedAt": 0
  }
]

401 Unauthorized

Example 401 response

Notes

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

Last updated