action appwrite_teams_get { label: "Get Team" description: "Get a team by its unique ID. All team members have read access for this resource." provider: appwrite method: GET path: "/teams/{teamId}" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } required: ["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." } } } }