listBackups
Retrieve and sort Heptabase backup files by date or size, with options to limit results, using this tool for organized backup management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
path | No | ||
sortBy | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"type": "number"
},
"path": {
"type": "string"
},
"sortBy": {
"enum": [
"date",
"size"
],
"type": "string"
}
},
"type": "object"
}