简体中文
Get record comment list
cURL
curl --request GET \ --url http://127.0.0.1:3000/api/comment/{tableId}/{recordId}/list \ --header 'Authorization: Bearer <token>'
{ "comments": [ { "id": "<string>", "content": [ { "type": "p", "children": [ { "type": "span", "value": "<string>" } ], "value": "<unknown>" } ], "createdBy": { "id": "<string>", "name": "<string>", "avatar": "<string>" }, "createdTime": "<string>", "reaction": [ { "reaction": "<string>", "user": [ { "id": "<string>", "name": "<string>", "avatar": "<string>" } ] } ], "lastModifiedTime": "<string>", "quoteId": "<string>", "deletedTime": "<string>" } ], "nextCursor": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The record count you want to take, maximum is 1000
20
forward
Returns the list of record's comment
显示 子属性
此页面对您有帮助吗?