action appwrite_teams_update { label: "Update Team" description: "Update a team by its unique ID. Only team owners have write access for this resource." provider: appwrite method: PUT path: "/teams/{teamId}" encoding: json input: { type: "object" properties: { name: { type: "string" description: "Team name. Max length: 128 chars." } teamId: { type: "string" } } required: ["name", "teamId"] additionalProperties: false } output: { type: "object" description: "Team" required: ["$id", "dateCreated", "name", "sum"] properties: { "$id": { type: "string" description: "Team ID." } dateCreated: { type: "integer" format: "int32" description: "Team creation date in Unix timestamp." } name: { type: "string" description: "Team name." } sum: { type: "integer" format: "int32" description: "Total sum of team members." } } } }