POST
/
base
/
{baseId}
/
workflow
/
{workflowId}
/
trigger
curl --request POST \
  --url https://app.teable.cn/api/base/%7BbaseId%7D/workflow/%7BworkflowId%7D/trigger \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"name":"string","description":"string","config":null,"type":"recordCreated"}'
{}

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
type
enum<string>
required

type of trigger

Available options:
recordCreated,
recordUpdated,
recordCreatedOrUpdated,
formSubmitted,
scheduledTime
name
string

name of the node

description
string

description of the node

config
any | null

node configuration

Response

201 - application/json
Successful created

The response is of type object.