change_schedule_owner
Transfer schedule ownership by specifying the schedule ID and new owner ID within the AYX-MCP-Wrapper server, ensuring accurate management of scheduling responsibilities.
Instructions
Change the owner of a schedule by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_owner_id | Yes | ||
schedule_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_owner_id": {
"title": "New Owner Id",
"type": "string"
},
"schedule_id": {
"title": "Schedule Id",
"type": "string"
}
},
"required": [
"schedule_id",
"new_owner_id"
],
"title": "change_schedule_ownerArguments",
"type": "object"
}