Update data rows
update_data_rowsUpdate a Dplooy Data collection's rows (the public JSON republishes automatically, live within ~1 minute). PREFERRED: row-level operations — rowEdits changes ONLY the named cells of the named rows (get row ids from get_data_collection), addRows appends, deleteRowIds removes explicitly; every row you do not name is untouched, and any unknown rowId or field id rejects the whole patch with nothing changed. Use rows (whole-set REPLACE — every row you want to keep must be included) only for full rewrites. Cell values are keyed by field id; image cells take { mediaId, path } from upload_media.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rows | No | FULL REWRITE ONLY: replaces the complete row set. Flat objects keyed by field id, or the { id, values } envelopes from get_data_collection. | |
| addRows | No | New rows to append — flat objects keyed by field id | |
| rowEdits | No | PREFERRED for changes: edit only the named cells of the named rows | |
| collectionId | Yes | The collection ID (from create_data_collection or list_data_collections) | |
| deleteRowIds | No | Row ids to remove — deletion never happens any other way |