add_workflow_to_collection
Associate a workflow with a specific collection using its ID. Ideal for organizing and managing workflows within Alteryx Server via the AYX-MCP-Wrapper.
Instructions
Add a workflow to a collection by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | ||
workflow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"title": "Collection Id",
"type": "string"
},
"workflow_id": {
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"collection_id",
"workflow_id"
],
"title": "add_workflow_to_collectionArguments",
"type": "object"
}