action signl4_get_teams_team_id_schedules { label: "Returns information about all duties that belong to the team." provider: signl4 method: GET path: "/teams/{teamId}/schedules" encoding: json input: { type: "object" properties: { Limit: { type: "integer" format: "int32" } MinDate: { type: "string" format: "date-time" } UserId: { type: "string" } teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { end: { type: "string" format: "date-time" } id: { type: "string" } options: { type: "integer" format: "int32" } start: { type: "string" format: "date-time" } userId: { type: "string" } } additionalProperties: false } } }