GET
/
base
/
{baseId}
/
workflow
/
{workflowId}
/
action
/
{actionId}
curl --request GET \
  --url https://app.teable.cn/api/base/%7BbaseId%7D/workflow/%7BworkflowId%7D/action/%7BactionId%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "name": "<string>",
  "description": "<string>",
  "config": {
    "baseId": "<string>",
    "tableId": "<string>",
    "loopKey": {
      "resolvable": true,
      "type": "fact",
      "path": "<string>",
      "keyStack": [
        "<string>"
      ],
      "params": {
        "pipes": [
          "uppercase"
        ]
      },
      "fact": "<string>"
    },
    "fields": {},
    "_fieldsOrder": [
      "<string>"
    ]
  },
  "id": "<string>",
  "category": "action",
  "testResult": {
    "spent": 123,
    "inputRaw": "<any>",
    "outputRaw": "<any>",
    "inputVariables": {},
    "outputVariables": {},
    "errorMsg": "<string>",
    "createdTime": "<string>"
  },
  "outputVariables": {},
  "inputVariables": {},
  "createdTime": "<string>",
  "lastModifiedTime": "<string>",
  "type": "createRecord"
}

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
actionId
string
required

Response

200 - application/json
Successful response
config
object
required
id
string
required

node id

category
enum<string>
required
Available options:
action
type
enum<string>
required

This Action will activate when a record is created in a table.

Available options:
createRecord
name
string

name of the node

description
string

description of the node

testResult
object

action test result

outputVariables
object

output variables

inputVariables
object

input variables

createdTime
string | null

created time

lastModifiedTime
string | null

last modified time