Skip to main content
PUT
/
table
/
cell
/
{cellId}
Update a cell
curl --request PUT \
  --url https://app.myhero.so/table/cell/{cellId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "value": "<unknown>"
}
'
{
  "data": {
    "_id": "<string>",
    "tableId": "<string>",
    "rowId": "<string>",
    "columnId": "<string>",
    "workspaceId": "<string>",
    "isIdentifier": false,
    "createdAt": 123,
    "updatedAt": 123,
    "originId": "<string>",
    "data": "<unknown>",
    "isDeleted": false
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Updates the value of a single cell. The accepted shape of value depends on the cell’s column type. For identifier cells, updating the value also propagates the change to linked cells across the table. Returns the updated cell.

Authorizations

Authorization
string
header
required

HERO personal access token

Path Parameters

cellId
string
required
Minimum string length: 1

Body

application/json
value
any

Response

200 response

data
object
required