Delete Row from Table
Removes the first row from an in-memory table whose key-column values match the provided keys. Requires key columns to be set on the table (via CreateTable, TableImport, or SetTableKeyColumns).
Category: Named Tables & Rules Engine · Group: Tables · Activity name: TableDeleteRow

Example
outputVariable = TableDeleteRow("<tableName>", {})
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| Table Name | string | Yes | Name of the target table. | |
| Key Values | object | Yes | Key column values identifying the row to delete (e.g., {"OrderId": "A-1"}). Must include a value for every key column. |
Outputs
| Name | Type | Description |
|---|---|---|
| outputVariable | json | Stores result (tableName, action: 'deleted'|'not_found', totalRows). |