action contribly_get_event_types { label: "Event types" description: "List available notification event types" provider: contribly method: GET path: "/event-types" encoding: json output: { type: "array" items: { type: "object" required: ["id", "name"] properties: { id: { type: "string" } name: { type: "string" } } } } }