Get QR-only shared asset
GET
/api/qr-share/{token}/qr-code/asset
const url = 'https://app.hitkeep.com/api/qr-share/example/qr-code/asset';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.hitkeep.com/api/qr-share/example/qr-code/assetReturns the persisted QR graphic exposed by a QR-only share link.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” token
required
string
Responses
Section titled “ Responses ”Image asset stream
Asset not found
Media type application/json
object
message
string
Example generated
{ "message": "example"}