cURL
curl --request GET \ --url https://api.reqlick.com/links/{id} \ --header 'Authorization: Bearer <token>'
{ "id": "link123", "key": "unique-key", "domain": "example.com", "url": "https://example.com", "_count": { "views": 100 }, "document": { "id": "doc123", "name": "Document Name", "type": "pdf", "file": "https://example.com/document.pdf" }, "qrcode": {} }
Retrieve a link for the authenticated workspace by its ID
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the link to retrieve
Workspace URL
Link retrieved successfully
"link123"
"unique-key"
"example.com"
"https://example.com"
Show child attributes
100
"doc123"
"Document Name"
"pdf"
"https://example.com/document.pdf"
QR code associated with the link