v13

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-015232292.9 KB
Tables

Update Row

Partially update a single row. Only the provided fields are updated; existing fields are preserved. Data is validated against the table schema.

patch/api/v1/tables/{tableId}/rows/{rowId}

Path parameters

tableIdstring required
Example:tbl_92e4c6a8b0d24f1e8a3c5d7b9f0e2a14

The unique identifier of the table.

rowIdstring required
Example:row_6b8d0f2a4c3e4e5da28f7c9b1d3f5a07

The unique identifier of the row.

Request body

workspaceIdstring required

The workspace that owns the table.

dataobject required

Fields to update. Only specified fields are changed.

Response

Row updated.

successboolean

Indicates whether the request was successful.

Example response

{
  "data": {
    "row": {
      "id": "row_6b8d0f2a4c3e4e5da28f7c9b1d3f5a07"
    }
  }
}