Workspaces
Retrieve a list of QR Codes
Workspaces
Retrieve a list of QR Codes
Retrieve a list of QR Codes for the authenticated workspace.
GET
/
workspaces
/
{url}
/
qrcodes
curl --request GET \
--url https://api.reqlick.com/workspaces/{url}/qrcodes \
--header 'Authorization: Bearer <token>'
[
{
"id": "1110580a82031111aaa01111",
"documentId": "<string>",
"url": "https://reqlick.com",
"key": "qD0ToTl",
"expiresAt": "<string>",
"password": "<string>",
"proxy": false,
"isFile": false,
"isQR": true,
"title": "URL Shortener, QR Codes, and File to Link | Reqlick",
"description": "Reqlick is more than a free URL shortener built-in analytics with custom domains, advanced QR Code features, and a File to Link solution",
"image": "https://reqlick.com/_static/thumbnail.png",
"allowedEmails": [
"<string>"
],
"createdAt": "2024-07-03T16:42:26.468Z",
"updatedAt": "2024-07-03T16:42:26.468Z",
"projectId": "1110580a82031111aaa01111",
"isPublic": true,
"isActive": true,
"isArchived": false,
"isRecord": false,
"domain": "rqk.sh",
"utm_source": "<string>",
"utm_medium": "<string>",
"utm_campaign": "<string>",
"utm_term": "<string>",
"utm_content": "<string>",
"ref": "<string>",
"ios": "<string>",
"android": "<string>",
"tagId": "<string>",
"createdSessionId": "<string>",
"_count": {
"views": 7
},
"qrcode": [
{
"id": "1110580a82031111aaa01111",
"image": "data:image/png;base64....",
"bgColor": "#ffffff",
"fgColor": "#000000",
"level": "Q",
"size": 1024,
"url": "https://reqlick.com",
"image_src": "<string>",
"image_excavate": true,
"image_height": 256,
"image_width": 256,
"projectId": "1110580a82031111aaa01111",
"createdAt": "2024-07-03T16:42:24.940Z",
"updatedAt": "2024-07-03T16:42:26.468Z",
"linkId": "1110580a82031111aaa01111"
}
],
"createdBy": {
"name": "<string>",
"image": "https://example.com/image.png",
"id": "1110580a82031111aaa01111"
}
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Workspace URL
Response
200
application/json
Successfully retrieved QR Codes
The response is of type object[]
.
curl --request GET \
--url https://api.reqlick.com/workspaces/{url}/qrcodes \
--header 'Authorization: Bearer <token>'
[
{
"id": "1110580a82031111aaa01111",
"documentId": "<string>",
"url": "https://reqlick.com",
"key": "qD0ToTl",
"expiresAt": "<string>",
"password": "<string>",
"proxy": false,
"isFile": false,
"isQR": true,
"title": "URL Shortener, QR Codes, and File to Link | Reqlick",
"description": "Reqlick is more than a free URL shortener built-in analytics with custom domains, advanced QR Code features, and a File to Link solution",
"image": "https://reqlick.com/_static/thumbnail.png",
"allowedEmails": [
"<string>"
],
"createdAt": "2024-07-03T16:42:26.468Z",
"updatedAt": "2024-07-03T16:42:26.468Z",
"projectId": "1110580a82031111aaa01111",
"isPublic": true,
"isActive": true,
"isArchived": false,
"isRecord": false,
"domain": "rqk.sh",
"utm_source": "<string>",
"utm_medium": "<string>",
"utm_campaign": "<string>",
"utm_term": "<string>",
"utm_content": "<string>",
"ref": "<string>",
"ios": "<string>",
"android": "<string>",
"tagId": "<string>",
"createdSessionId": "<string>",
"_count": {
"views": 7
},
"qrcode": [
{
"id": "1110580a82031111aaa01111",
"image": "data:image/png;base64....",
"bgColor": "#ffffff",
"fgColor": "#000000",
"level": "Q",
"size": 1024,
"url": "https://reqlick.com",
"image_src": "<string>",
"image_excavate": true,
"image_height": 256,
"image_width": 256,
"projectId": "1110580a82031111aaa01111",
"createdAt": "2024-07-03T16:42:24.940Z",
"updatedAt": "2024-07-03T16:42:26.468Z",
"linkId": "1110580a82031111aaa01111"
}
],
"createdBy": {
"name": "<string>",
"image": "https://example.com/image.png",
"id": "1110580a82031111aaa01111"
}
}
]