Get QR Code

Fetch a user's studio QR code by ID

Info

Required scope: studio.read

Warning

This method requires authentication

Retrieve a specific studio QR code owned by the authenticated user.

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

Path Parameters

ParameterTypeDescription
qrCodeIdstring (UUID)The ID of the QR code to retrieve

Response

Success
Error (Not Found)
Error (Unauthorized)
{
  "id": "e5f6a7b8-c9d0-1234-ef56-789012345678",
  "brandId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "title": "My Website",
  "link": "https://example.com",
  "shouldShowTitle": true
}