action signl4_get_teams_team_id_event_sources { label: "Gets event sources of a specific team." provider: signl4 method: GET path: "/teams/{teamId}/eventSources" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { address: { type: "string" } groupId: { type: "string" } lastEventRaised: { type: "string" format: "date-time" } subscriptionId: { type: "string" } teamId: { type: "string" } type: { type: "integer" format: "int32" enum: [0, 1, 2, 3] } } additionalProperties: false } } }