PUT
/
v1
/
tables
/
{table}
/
rows
curl --request PUT \
  --url https://api.botpress.cloud/v1/tables/{table}/rows \
  --header 'Content-Type: application/json' \
  --data '{
  "rows": [
    {
      "id": 123
    }
  ],
  "waitComputed": true
}'
{
  "rows": [
    {
      "id": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "computed": {},
      "stale": [
        "<string>"
      ],
      "similarity": 123
    }
  ],
  "warnings": [
    "<string>"
  ],
  "errors": [
    "<string>"
  ]
}

Path Parameters

table
string
required

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

Body

application/json

Data for rows to update, including IDs. Errors affect only specific rows, not the entire batch.

The body is of type object.

Response

200
application/json

Returns updated rows, including warnings for minor issues and errors for failed updates.

The response is of type object.