跳转到主要内容
POST
/
table
/
{tableId}
/
record
/
{recordId}
/
{fieldId}
/
button-click
Button click
curl --request POST \
  --url http://127.0.0.1:3000/api/table/{tableId}/record/{recordId}/{fieldId}/button-click \
  --header 'Authorization: Bearer <token>'
{
  "runId": "<string>",
  "tableId": "<string>",
  "fieldId": "<string>",
  "record": {
    "id": "<string>",
    "fields": {},
    "name": "<string>",
    "autoNumber": 123,
    "createdTime": "<string>",
    "lastModifiedTime": "<string>",
    "createdBy": "<string>",
    "lastModifiedBy": "<string>",
    "permissions": {},
    "undeletable": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tableId
string
required
recordId
string
required
fieldId
string
required

Response

200 - application/json

Returns the clicked cell

runId
string
required
tableId
string
required
fieldId
string
required
record
object
required