List Workflows
curl --request GET \
--url https://api.example.com/api/workflows \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/workflows"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/workflows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"workflow_uuid": "<string>",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"workflow_version_uuid": "<string>",
"specification": null,
"versions": [
{
"workflow_version_uuid": "<string>",
"workflow_uuid": "<string>",
"specification": "<unknown>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"version": 123,
"is_current": true,
"name": "<string>",
"description": "<string>"
}
],
"current_version": 123,
"executions": 0,
"success_rate": 123,
"last_run": "2023-11-07T05:31:56Z"
}
],
"total": 123
}workflows
List Workflows
GET
/
api
/
workflows
List Workflows
curl --request GET \
--url https://api.example.com/api/workflows \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/workflows"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/workflows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"workflow_uuid": "<string>",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"workflow_version_uuid": "<string>",
"specification": null,
"versions": [
{
"workflow_version_uuid": "<string>",
"workflow_uuid": "<string>",
"specification": "<unknown>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"version": 123,
"is_current": true,
"name": "<string>",
"description": "<string>"
}
],
"current_version": 123,
"executions": 0,
"success_rate": 123,
"last_run": "2023-11-07T05:31:56Z"
}
],
"total": 123
}Was this page helpful?
⌘I
