English
Retrieve the change history of a specific record, including field modifications and user information.
cURL
curl --request GET \ --url http://127.0.0.1:3000/api/table/{tableId}/record/{recordId}/history \ --header 'Authorization: Bearer <token>'
{ "historyList": [ { "id": "<string>", "tableId": "<string>", "recordId": "<string>", "fieldId": "<string>", "before": { "meta": { "name": "Tags", "type": "singleSelect", "cellValueType": "string", "isLookup": true, "isConditionalLookup": true, "options": "<unknown>" }, "data": "<unknown>" }, "after": { "meta": { "name": "Tags", "type": "singleSelect", "cellValueType": "string", "isLookup": true, "isConditionalLookup": true, "options": "<unknown>" }, "data": "<unknown>" }, "createdTime": "<string>", "createdBy": "<string>" } ], "userMap": {}, "nextCursor": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Get the history list for a record
Show child attributes
Was this page helpful?