add_schedule_to_collection
Link a schedule to a collection by specifying the collection ID and schedule ID. Enables organized automation of workflows within the AYX-MCP-Wrapper environment.
Instructions
Add a schedule to a collection by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | ||
schedule_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"title": "Collection Id",
"type": "string"
},
"schedule_id": {
"title": "Schedule Id",
"type": "string"
}
},
"required": [
"collection_id",
"schedule_id"
],
"title": "add_schedule_to_collectionArguments",
"type": "object"
}