update_collection_name_or_owner
Modify a collection's name or owner by specifying its ID in the AYX-MCP-Wrapper server, allowing for easy management of Alteryx Server resources.
Instructions
Update a collection name or owner by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | ||
name | Yes | ||
owner_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"title": "Collection Id",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"owner_id": {
"title": "Owner Id",
"type": "string"
}
},
"required": [
"collection_id",
"name",
"owner_id"
],
"title": "update_collection_name_or_ownerArguments",
"type": "object"
}