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