GET
/
base
/
{baseId}
/
workflow
/
{workflowId}
/
run
curl --request GET \
  --url 'https://app.teable.cn/api/base/%7BbaseId%7D/workflow/%7BworkflowId%7D/run?skip=SOME_NUMBER_VALUE&take=SOME_NUMBER_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "rowCount": 123,
  "runs": [
    {
      "id": "<string>",
      "status": "success",
      "spent": 123,
      "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

Query Parameters

skip
number | null

skip number

take
number | null

take number

Response

200 - application/json
Successful response
rowCount
number
required

total number of the runs

runs
object[]
required

workflow run history