Debt consolidation products follow a straightforward pattern with Method: discover the borrower’s existing debts, verify current balances, and route payments directly to each creditor. This guide continues the James Rodriguez scenario from Getting Started, where Connect discovered 6 liability accounts.Documentation Index
Fetch the complete documentation index at: https://docs.methodfi.com/llms.txt
Use this file to discover all available pages before exploring further.
Identifying Payable Accounts
From the Connect results, James has 6 liability accounts. Before building a consolidation plan, determine which accounts Method can actually send payments to by checking theproducts array on each account.
Only accounts with payment in their products list are eligible for payoff through Method. This reflects whether Method has a payment rail to that specific creditor.
| Account ID | Creditor | Type | Balance | Payable via Method |
|---|---|---|---|---|
acc_WqNhMRNVZjbKg | Chase Freedom Flex | Credit Card | $3,200 | payment available |
acc_nPvJM9KXRwQE4 | Discover it | Credit Card | $1,800 | payment available |
acc_TmGPLxkz7Nrh6 | Toyota Motor Credit | Auto Loan | $18,450 | payment available |
acc_RkFqVbD8HjQxP | FedLoan | Student Loan | $34,200 | Data only (balance, update) |
acc_YXDrjADGjC76U | Upstart | Personal Loan | $12,000 | payment available |
acc_KpLnWzFt9Mjd3 | Rocket Mortgage | Mortgage | $245,000 | Data only (balance, update) |
update) for DTI calculations and underwriting, but payment routing to those servicers isn’t available through Method. If your consolidation product needs to pay off those accounts, you’d handle disbursement through your own payment rails.
Your product’s underwriting logic determines which payable debts to consolidate. A typical consolidation product might target the two credit cards ($5,000 combined), while a broader consolidation loan might include the personal loan and credit cards ($17,000 combined).
Verifying Balances with Account Updates
Before calculating disbursement amounts, pull real-time balances to ensure accuracy. The Application & Qualification guide covers Account Updates in detail. The key insight is that balances can change daily as transactions post and payments clear — a balance from application time may be stale by funding time.Disbursing Funds to Creditors
Once your consolidation loan is approved and funded, use the Payments API to send funds directly to each creditor. Payments flow from your corporate funding account to the borrower’s liability accounts.Pay Off the Chase Freedom Flex ($3,200)
Pay Off the Discover it ($1,800)
pending status. Method will process the payments and deliver webhooks as each moves through the payment lifecycle: pending → processing → sent → settled.
Summary
The full debt consolidation flow combines four Method capabilities:| Step | API | Purpose |
|---|---|---|
| 1. Discover debts | POST /entities/{ent_id}/connect | Find all liability accounts |
| 2. Check coverage | GET /accounts/{acc_id} → products | Confirm which accounts support payment |
| 3. Verify balances | POST /accounts/{acc_id}/updates | Get real-time balances and rates |
| 4. Disburse funds | POST /payments | Route payments directly to payable creditors |
What’s Next
Portfolio Intelligence
Monitor borrower liability, utilization, and delinquency signals continuously after origination.
Payments Lifecycle
Understand payment states, timelines, and webhook events.