Workspaces
Retrieve a list of links
Workspaces
Retrieve a list of links
Retrieve a list of links for the authenticated workspace.
GET
/
workspaces
/
{url}
/
links
curl --request GET \
--url https://api.reqlick.com/workspaces/{url}/links \
--header 'Authorization: Bearer <token>'
[
{
"id": "1110580a82031111aaa01111",
"documentId": "1110580a82031111aaa01111",
"url": null,
"key": "try-reqlick",
"expiresAt": null,
"isFile": true,
"isQR": false,
"title": "Reqlick title",
"description": "Reqlick description",
"image": "image.png",
"createdAt": "2024-06-05T12:55:41.946Z",
"updatedAt": "2024-06-05T12:55:41.946Z",
"isPublic": true,
"isActive": true,
"isArchived": false,
"domain": "rqk.sh",
"utm_source": null,
"utm_medium": null,
"utm_campaign": null,
"utm_term": null,
"utm_content": null,
"ref": null,
"ios": null,
"android": null,
"views": 1,
"isProtected": false,
"createdBy": {
"name": "<string>",
"image": "https://example.com/reqlick.logo",
"id": "1110580a82031111aaa01111"
},
"shortLink": "https://rqk.sh/try-reqlick"
}
]
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 all links
The response is of type object[]
.
curl --request GET \
--url https://api.reqlick.com/workspaces/{url}/links \
--header 'Authorization: Bearer <token>'
[
{
"id": "1110580a82031111aaa01111",
"documentId": "1110580a82031111aaa01111",
"url": null,
"key": "try-reqlick",
"expiresAt": null,
"isFile": true,
"isQR": false,
"title": "Reqlick title",
"description": "Reqlick description",
"image": "image.png",
"createdAt": "2024-06-05T12:55:41.946Z",
"updatedAt": "2024-06-05T12:55:41.946Z",
"isPublic": true,
"isActive": true,
"isArchived": false,
"domain": "rqk.sh",
"utm_source": null,
"utm_medium": null,
"utm_campaign": null,
"utm_term": null,
"utm_content": null,
"ref": null,
"ios": null,
"android": null,
"views": 1,
"isProtected": false,
"createdBy": {
"name": "<string>",
"image": "https://example.com/reqlick.logo",
"id": "1110580a82031111aaa01111"
},
"shortLink": "https://rqk.sh/try-reqlick"
}
]