action appwrite_teams_list { label: "List Teams" description: "Get a list of all the current user teams. You can use the query params to filter your results. On admin mode, this endpoint will return a list of all of the project's teams. [Learn more about different API modes](/docs/admin)." provider: appwrite method: GET path: "/teams" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } orderType: { type: "string" } search: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Teams List" required: ["sum", "teams"] properties: { sum: { type: "integer" format: "int32" description: "Total sum of items in the list." } teams: { type: "array" description: "List of teams." items: { type: "object" description: "Team" required: ["$id", "name", "dateCreated", "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." } } } } } } }