-
Notifications
You must be signed in to change notification settings - Fork 4
Get Service List Sequence Diagram
Paul Philion edited this page Mar 22, 2024
·
2 revisions
High-level sequence diagram for finding service list:
sequenceDiagram
actor User
participant CoverageApp
participant AddressResolver
participant AllConnect
User->>CoverageApp: Enter address
CoverageApp->>AddressResolver: Resolve address to a formal address structure with required params
AddressResolver->>CoverageApp: Structured params for address
CoverageApp->>AllConnect: Get the plans for this address (using URL)
AllConnect->>CoverageApp: List of plans, ordered by cheapest first
CoverageApp->>User: Present plans for specified address