Scouttlo
All ideas/devtools/Plataforma SaaS para gestión integral del ciclo de vida de suscripciones y facturación con integración de webhooks.
GitHubB2Bdevtools

Plataforma SaaS para gestión integral del ciclo de vida de suscripciones y facturación con integración de webhooks.

Scouted 6 hours ago

7.3/ 10
Overall score

Turn this signal into an edge

We help you build it, validate it, and get there first.

Go from idea to plan: who buys, what MVP to launch, how to validate it, and what to measure before spending months.

Extra context

Learn more about this idea

Get a clearer explanation of what the opportunity means, the current problem behind it, how this idea solves it, and the key concepts involved.

Share your email to view this expanded analysis.

Score breakdown

Urgency8.0
Market size7.0
Feasibility8.0
Competition6.0
Pain point

Falta de modelo de suscripción para tenants y ausencia de integración con facturación.

Who'd pay for this

Empresas SaaS que gestionan múltiples tenants y necesitan automatizar suscripciones y facturación.

Source signal

"No tenant subscription model or lifecycle hooks; billing integration is missing."

Original post

Add subscription lifecycle and billing integration (tenant subscriptions)

Published: 6 hours ago

Repository: Samo-Engineering-Dev-Team/FieldCore-backend Author: ThonoTheLord ## Problem No tenant subscription model or lifecycle hooks; billing integration is missing. ## Scope - Add tenant_subscriptions model with state machine (trial, active, overdue, suspended, cancelled). - Implement billing connector interface (mockable) and webhook handlers for billing provider events. ## Acceptance criteria - Subscription state machine implemented; webhook endpoints ingest billing events and update subscription state. ## Out of scope - Production payment provider integration (can be mocked for now). ## Dependencies - Parent epic: Samo-Engineering-Dev-Team/FieldCore-Frontend#37 - Depends on: #14 ## Suggested labels - saas - licensing - backend - ops ## Backend code hint (model/state sketch) ```sql CREATE TABLE tenant_subscriptions ( id uuid PRIMARY KEY, tenant_id uuid REFERENCES tenants(id), state text CHECK (state IN ('trial','active','overdue','suspended','cancelled')), billing_metadata jsonb, updated_at timestamptz ); ```