action signl4_get_teams_team_id_memberships { label: "Get all invites of a team." provider: signl4 method: GET path: "/teams/{teamId}/memberships" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { id: { type: "string" } isInvite: { type: "boolean" } mail: { type: "string" } name: { type: "string" } roleId: { type: "string" } } additionalProperties: false } } }