action vercel_get_teams { label: "List all teams" description: "Get a paginated list of all the Teams the authenticated User is a member of." provider: vercel method: GET path: "/v2/teams" encoding: json input: { type: "object" properties: { limit: { type: "number" description: "Maximum number of Teams which may be returned." } since: { type: "number" description: "Timestamp (in milliseconds) to only include Teams created since then." } until: { type: "number" description: "Timestamp (in milliseconds) to only include Teams created until then." } } additionalProperties: false } output: { type: "object" description: "A paginated list of teams." required: ["pagination", "teams"] properties: { pagination: { type: "object" description: "This object contains information related to the pagination of the current request, including the necessary parameters to get the next or previous page of data." required: ["count", "next", "prev"] properties: { count: { type: "number" description: "Amount of items in the current page." } next: { type: ["number", "null"] description: "Timestamp that must be used to request the next page." } prev: { type: ["number", "null"] description: "Timestamp that must be used to request the previous page." } } } teams: { type: "array" items: { type: "object" } } } } }