action appwrite_teams_delete { label: "Delete Team" description: "Delete a team by its unique ID. Only team owners have write access for this resource." provider: appwrite method: DELETE path: "/teams/{teamId}" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }