transfer_workflow
Transfer ownership of a workflow to a new user by specifying the workflow ID and new owner ID, enabling efficient management of workflow permissions and responsibilities.
Instructions
Transfer workflow ownership to a new user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_owner_id | Yes | ||
workflow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_owner_id": {
"title": "New Owner Id",
"type": "string"
},
"workflow_id": {
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id",
"new_owner_id"
],
"title": "transfer_workflowArguments",
"type": "object"
}