botruntime
API ReferenceTables API

Delete Table Rows

Allows selective deletion of rows or complete clearance of a table.

POST
/v1/tables/{table}/rows/delete

Path Parameters

table*string

The table's name or unique identifier for targeting specific table operations.

Request Body

application/json

Identifiers of the rows to be deleted.

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/tables/string/rows/delete" \  -H "Content-Type: application/json" \  -d '{}'
{  "deletedRows": 0,  "job": {    "id": "string",    "status": "string"  }}
{  "deletedRows": 0,  "job": {    "id": "string",    "status": "string"  }}