GET
/
table
/
{tableId}
/
field
/
{fieldId}
/
plan
curl --request GET \
  --url https://app.teable.io/api/table/%7BtableId%7D/field/%7BfieldId%7D/plan \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "estimateTime": 123,
  "graph": {
    "nodes": [
      {
        "id": "<string>",
        "label": "<string>",
        "comboId": "<string>"
      }
    ],
    "edges": [
      {
        "source": "<string>",
        "target": "<string>",
        "label": "<string>"
      }
    ],
    "combos": [
      {
        "id": "<string>",
        "label": "<string>"
      }
    ]
  },
  "updateCellCount": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

tableId
string
required
fieldId
string
required

Response

200 - application/json
Returns the calculation plan for the field
estimateTime
number
required
updateCellCount
number
required
graph
object