New customer purchases OTT subscription with free trial using Direct Debit
This guide details the journey for a new customer subscribing to OTT with a free trial using Direct Debit. You'll find both the customer-facing flow and system-level sequence, complete with API endpoint paths and CRM/contract event mappings. Use it to align the UX journey with backend specifications — and contact us if you’d like enhanced Postman or Swagger definitions for integration testing.
Customer perspective
%%{init: { "theme": "neutral", "look": "classic" }}%% flowchart TD A([Start]) --> B{Does username exist?} B -- Yes --> C[Route to existing<br/>customer login] B -- No --> D[Register new customer] D --> E[View product catalogue by country and itemType] E --> F[Create Direct Debit payment method] F --> G[Add items to cart] G --> H[Checkout cart] H --> I([End])
System perspective
%%{init: { "theme": "neutral", "look": "classic" }}%% sequenceDiagram participant C as Customer participant W as Web participant CRS as CustomerRegistrationService participant Cat as CatalogueService participant Pay as PaymentService participant Cart as CartService C->>W: Start W->>CRS: queryIfUserNameExists alt Username exists W-->>C: Route to existing customer log in else Username does not exist W->>CRS: registerCustomer CRS-->>W: success W->>Cat: getCatalogue Cat-->>W: catalogue items (filtered by country and itemType) W->>Pay: createPaymentMethod Pay-->>W: payment method created W->>Cart: addItemsToCart Cart-->>W: items added W->>Cart: checkoutCart Cart-->>W: checkout complete end W-->>C: End
Updated 11 days ago