cURL
curl --request PATCH \ --url https://api.example.com/api/workflows/{workflow_uuid} \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>", "specification": {} } '
{ "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" }
Successful Response
Backed by workflows table (see kinetic/db/schema.sql).
workflows
kinetic/db/schema.sql
workflow_version_uuid/specification are derived from the latest version and may be included by some endpoints.
workflow_version_uuid
specification
Show child attributes
Was this page helpful?