跳转到主要内容
GET
/
base
/
{baseId}
/
workflow
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/base/{baseId}/workflow \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "createdBy": "<string>",
    "createdTime": "<string>",
    "nodes": [
      {
        "id": "<string>",
        "type": "<string>",
        "category": "logic"
      }
    ],
    "name": "<string>",
    "description": "<string>",
    "hasDraft": true,
    "isActive": true,
    "lastModifiedTime": "<string>",
    "lastModifiedBy": "<string>"
  }
]

授权

Authorization
string
header
必填

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

路径参数

baseId
string
必填

查询参数

onlyFirst
boolean | null

响应

200 - application/json

Successful response

id
string
必填

a unique identifier for the workflow

createdBy
string
必填

created by user id

createdTime
string
必填

created time of the workflow

nodes
object[]
必填
name
string

the name of the workflow

description
string

description of the workflow

hasDraft
boolean

has draft of the workflow

isActive
boolean

is active of the workflow

lastModifiedTime
string

last modified time of the workflow

lastModifiedBy
string

last modified by user id

Last modified on December 10, 2025