PATCH body for /v1/workflow-runs/{id} — NOT_STARTED runs only. Both fields are optional. A body with both None is rejected as 400 (no-op PATCH). input_scope replaces the row's KB-ref list wholesale; name renames the run path_part (the trigger cascades materialized_path to every descendant).
| Name | Type | Description | Notes |
|---|---|---|---|
| input_scope | List[UUID] | New KB-reference scope (DOCUMENT + FOLDER pp_ids). Replaces the row's ``input_path_part_ids`` wholesale. Uploaded files live in ``inputs/`` and are walked at Start; they are not part of this list. | [optional] |
| name | str | New display name for the run (mirrors path_part.name). | [optional] |
from ksapi.models.update_workflow_run_request import UpdateWorkflowRunRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateWorkflowRunRequest from a JSON string
update_workflow_run_request_instance = UpdateWorkflowRunRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateWorkflowRunRequest.to_json())
# convert the object into a dict
update_workflow_run_request_dict = update_workflow_run_request_instance.to_dict()
# create an instance of UpdateWorkflowRunRequest from a dict
update_workflow_run_request_from_dict = UpdateWorkflowRunRequest.from_dict(update_workflow_run_request_dict)