Skip to main content
GET
/
share
/
{shareId}
/
view
/
link-records
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/share/{shareId}/view/link-records \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "title": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

shareId
string
required

Query Parameters

take
default:100

The record count you want to take, maximum is 2000

Example:

100

skip
default:0

The records count you want to skip

Example:

0

fieldId
string
required
type
enum<string>

Only used for plugin views

Available options:
candidate,
selected

Response

200 - application/json

Link records list

id
string
required
title
string
Last modified on December 10, 2025