English
get automation workflow run history list
cURL
curl --request GET \ --url 'https://app.teable.io/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>" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
skip number
take number
Successful response
The response is of type object.
object