Export QR-only shared takeout REST API
GET
/api/qr-share/{token}/qr-code/takeout
const url = 'https://hitkeep.com/api/qr-share/example/qr-code/takeout?format=xlsx';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/takeout?format=xlsx'Exports one QR code’s definition, opens, and scoped analytics through a QR-only share link.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”token
required
string
Query Parameters
Section titled “Query Parameters”format
string
Export format. Supported values: xlsx, csv, parquet, json, ndjson. Defaults: xlsx for takeout endpoints, csv for hits export endpoints.
Responses
Section titled “Responses”Export file stream