跳转到主要内容
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>"
  }
]

授权

Authorization
string
header
必填

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

路径参数

shareId
string
必填

查询参数

take
默认值:100

The record count you want to take, maximum is 2000

示例:

100

skip
默认值:0

The records count you want to skip

示例:

0

fieldId
string
必填
type
enum<string>

Only used for plugin views

可用选项:
candidate,
selected

响应

200 - application/json

Link records list

id
string
必填
title
string
Last modified on December 10, 2025