action signl4_get_teams_team_id_setup_progress { label: "Gets setup progress of a specific team." provider: signl4 method: GET path: "/teams/{teamId}/setupProgress" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "object" properties: { completedSteps: { type: "array" items: { type: "string" } } teamId: { type: "string" } timestamp: { type: "string" format: "date-time" } } additionalProperties: false } }