Studio QR Codes

List user's studio QR codes

Info

Required scope: studio.read

Warning

This method requires authentication

Retrieve a list of all studio QR codes belonging to the authenticated user.

QR codes are linked to a brand via the brandId field.

curl -H "Authorization: Bearer [access token]" \
     https://api.restream.io/v2/user/studio/qr-codes

Response

Success
Error
{
  "qrCodes": [
    {
      "id": "e5f6a7b8-c9d0-1234-ef56-789012345678",
      "brandId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "title": "My Website",
      "link": "https://example.com",
      "shouldShowTitle": true
    },
    {
      "id": "f6a7b8c9-d0e1-2345-f678-901234567890",
      "brandId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "title": "Donate",
      "link": "https://donate.example.com",
      "shouldShowTitle": false
    }
  ]
}