Get QR-only shared asset REST API
GET
/api/qr-share/{token}/qr-code/asset
const url = 'https://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://hitkeep.com/api/qr-share/example/qr-code/assetReturns the filesystem-backed 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 typeapplication/json
object
message
string
Examplegenerated
{ "message": "example"}