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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

url
string
required

Workspace URL

Response

200
application/json
Successfully retrieved all links
id
string

Link ID

Example:

"1110580a82031111aaa01111"

documentId
string

Document ID

Example:

"1110580a82031111aaa01111"

url
string | null

Link URL

Example:

null

key
string

Link key

Example:

"try-reqlick"

expiresAt
string | null

Expiration date

Example:

null

isFile
boolean

File status

Example:

true

isQR
boolean

QR code status

Example:

false

title
string

Link title

Example:

"Reqlick title"

description
string

Link description

Example:

"Reqlick description"

image
string

Link image URL

Example:

"image.png"

createdAt
string

Creation date

Example:

"2024-06-05T12:55:41.946Z"

updatedAt
string

Last update date

Example:

"2024-06-05T12:55:41.946Z"

isPublic
boolean

Public status

Example:

true

isActive
boolean

Active status

Example:

true

isArchived
boolean

Archived status

Example:

false

domain
string

Domain

Example:

"rqk.sh"

utm_source
string | null

UTM source

Example:

null

utm_medium
string | null

UTM medium

Example:

null

utm_campaign
string | null

UTM campaign

Example:

null

utm_term
string | null

UTM term

Example:

null

utm_content
string | null

UTM content

Example:

null

ref
string | null

Reference

Example:

null

ios
string | null

iOS data

Example:

null

android
string | null

Android data

Example:

null

views
integer

Number of views

Example:

1

isProtected
boolean

Protected status

Example:

false

createdBy
object

Short link URL

Example:

"https://rqk.sh/try-reqlick"