update_schedule_name_or_comment
Modify or update the name and comment of a schedule using its unique ID within the AYX-MCP-Wrapper server, ensuring accurate and organized workflow management.
Instructions
Update a schedule name or comment by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | ||
name | Yes | ||
schedule_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"title": "Comment",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"schedule_id": {
"title": "Schedule Id",
"type": "string"
}
},
"required": [
"schedule_id",
"name",
"comment"
],
"title": "update_schedule_name_or_commentArguments",
"type": "object"
}