listBackups
Retrieve and organize Heptabase backup files by date or size, specifying a limit to manage data efficiently for analysis or export.
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"
}