跳转到主要内容
POST
/
base
/
{baseId}
/
workflow
/
{workflowId}
/
test-all
shell
curl --request POST \
  --url https://app.teable.cn/api/base/%7BbaseId%7D/workflow/%7BworkflowId%7D/test-all \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"recordId":"string","sideEffect":true,"withDependency":true,"property1":null,"property2":null}'
true

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

Body

application/json
recordId
string

the record id to test

sideEffect
boolean

whether to test with side effect

withDependency
boolean

whether to test with dependency

{key}
any

Response

200 - application/json

Successful updated

The response is of type boolean.

I