Skip to main content
GET
/
api
/
workflows
List Workflows
curl --request GET \
  --url https://api.example.com/api/workflows \
  --header 'X-Kinetic-Key: <api-key>'
{
  "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": "<unknown>",
      "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
}

Authorizations

X-Kinetic-Key
string
header
required

Your Kinetic API key

Response

200 - application/json

Successful Response

items
WorkflowResponse · object[]
required
total
integer
required