v1

latestOpenAPI 3.0.3MIT OR Apache-2.02026-07-17203670.3 KB
tables

Delete a table

Delete a table. By default, documents in the table are moved to the default table. Set cascade=true in the request body to delete all documents in the table.

delete/v1/tables/{id}

Path parameters

idstring required
Example:tbl_abc123

Table ID

Request body

cascadeboolean

If true, delete all documents in the table. If false, move them to default table.

Response

Table deleted

deletedboolean
idstring
cascadeboolean

Example response

{
  "deleted": true,
  "id": "tbl_abc123"
}