PUT
/
base
/
{baseId}
/
workflow
/
{workflowId}
/
test
/
{nodeId}
curl --request PUT \
  --url https://app.teable.cn/api/base/%7BbaseId%7D/workflow/%7BworkflowId%7D/test/%7BnodeId%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"property1":null,"property2":null}'
{
  "spent": 123,
  "inputRaw": "<any>",
  "outputRaw": "<any>",
  "inputVariables": {},
  "outputVariables": {},
  "errorMsg": "<string>",
  "createdTime": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

baseId
string
required
workflowId
string
required
nodeId
string
required

Body

application/json · object
{key}
any | null

Response

200 - application/json
Successful updated
createdTime
string
required
spent
number

spent time

inputRaw
any | null
outputRaw
any | null
inputVariables
object

The variables snapshot when executed

outputVariables
object

The variables snapshot when executed

errorMsg
string