Delete Record
Module · Stable
Delete targeted rows from a custom table — by record id, or by table + filter.
Deletes rows from an admin-defined custom table. Two targeted modes (one required): give a record_id to delete exactly that row, or give table + filter (a column key → value object) to delete every matching row. A filter is mandatory in table mode — a delete is always targeted; to empty a whole table use Clear Table. Deletes are soft (rows are archived, like the table UI’s delete), so they leave the list but survive for audit.
When to use
Section titled “When to use”Use to remove specific rows a flow or agent has identified — drop a row after processing it, delete entries matching a status, or undo a bad insert. Pair with List/Get records to find the record_id, or pass a filter to delete by column value.
When not to use
Section titled “When not to use”To empty an entire table use Clear Table. To change a row in place use Update Record. To add or upsert rows use Create Record or Sync to Table.
Inputs
Section titled “Inputs”Configured per use: record_id, table, filter.
Outputs
Section titled “Outputs”Auto-generated from the skill registry (load_skills()). Do not edit by hand.