affine_list_histories
Retrieve document history timestamps for a specific document in AFFiNE workspaces, enabling version tracking and audit trail management.
Instructions
List doc histories (timestamps) for a doc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
before | No | ||
guid | Yes | ||
take | No | ||
workspaceId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"before": {
"type": "string"
},
"guid": {
"type": "string"
},
"take": {
"type": "number"
},
"workspaceId": {
"type": "string"
}
},
"required": [
"guid"
],
"type": "object"
}