action signl4_get_teams_team_id { label: "Gets infos of a specific team." provider: signl4 method: GET path: "/teams/{teamId}" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" } memberIds: { type: "array" items: { type: "string" } } name: { type: "string" } subscriptionId: { type: "string" } timezone: { type: "string" } } additionalProperties: false } }