remove_schedule_from_collection
Remove a specific schedule from a collection by providing the collection ID and schedule ID to manage workflow automation efficiently.
Instructions
Remove a schedule from 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": "remove_schedule_from_collectionArguments",
"type": "object"
}