New Features
Snapshot Delinquency Data
Updates withsource: "snapshot" now include a comprehensive set of delinquency fields sourced from the credit report. These fields give you a full picture of a borrower’s delinquency status without pulling a separate credit report for the user.
- Delinquency Status & Period:
delinquent_status,delinquent_period, anddelinquent_start_dateindicate the current delinquency state, severity bucket (less_than_30,30,60,90,120,over_120), and when the delinquency began. - Delinquent Actions:
delinquent_actionsurfaces servicer-level actions such ascharge_off,foreclosure,repossession,chapter_7,chapter_13,wage_garnishment,payment_agreement, andbankruptcy. - Delinquent Amount:
delinquent_amountreturns the dollar amount currently reported as delinquent. - Delinquency History:
delinquent_historyprovides a time-series array of historical delinquency periods, each withstart_date,end_date,status,period, andaction, enabling trend analysis across multiple reporting cycles.
credit_card, auto_loan, personal_loan, mortgage, and student_loan liability types. These fields are not included on Updates with source: "direct".
For more information, visit the Updates API documentation.
Receive Reversals via Wire
You can now receive payment reversals via wire. This functionality allows customers to quickly and easily access funds from reversed payments that previously could not run on ACH rails (such as inbound wire transfers via payment instrument).These accounts are receive-only and do not support outbound payments.
Dashboard: Webhook Management
The Method Dashboard now supports full webhook lifecycle management. You can create, view, update, and delete webhook endpoints directly from the UI, with no API calls or support requests required.- Register new webhook endpoints with custom event filters and authentication
- View all active webhooks and their status
- Update endpoint URLs and configuration in place
- Delete webhooks that are no longer needed
Improvements
Rate Limiting
To protect platform stability and ensure consistent performance across all customers, all API requests are now subject to published, tiered rate limits. Documented limits mean your engineering team can design around known thresholds rather than hitting undefined behavior during peak operations.- Rate limits are applied per API key within a 60-second rolling window, organized into tiers based on operation type.
- Each tier tracks independently, so usage against one tier does not affect capacity in another.
- Customers with high-volume integrations can request custom limits through their customer success manager.
Webhooks
Delivery Rate Limiting Outbound webhook deliveries are now rate-limited to 15 deliveries per second per webhook registration. This smooths delivery during high-volume events (e.g., bulk Connect completions or batch Update subscriptions) and reduces the likelihood of triggering rate-limit responses on your infrastructure. Failure Handling An individual webhook delivery is now retried up to 5 times before it is marked as failed, rather than remaining in a retry loop indefinitely. After 5 consecutive delivery failures, the webhookstatus is set to disabled, consistent with the documented automatic-disabling behavior. You can reactivate a disabled webhook from the Dashboard or via the Update a Webhook endpoint once the underlying issue is resolved.
For more information, visit the Webhooks API documentation.
Payments API
Destination Processing Window The destination processing window has been updated to 4:00 PM CT (5:00 PM ET). Payments submitted before this cutoff can be processed the same-day; payments submitted after are queued for next-business-day processing. For more information, visit the Payments API documentation.Simulations API
Account Closed Event ThePOST /simulate/events endpoint for account.closed events now also triggers the account.update webhook as part of the simulation, matching production behavior. This enables more complete end-to-end testing of account lifecycle workflows in the development environment.
POST /simulate/events
account.closed, both webhooks now fire in sequence:
account.update: the account snapshot is updated with the closed statusaccount.closed: the account itself transitions to closed
Development Environment
Mock Credit Reports for Connect Mock raw credit reports are now available for Connect flows in the development environment, enabling end-to-end testing of credit report-based account discovery without live bureau data. Payment Destination Details in Responses The development environmentPOST /payments response now includes the destination_payment_method field, aligning dev responses with production behavior. This field indicates how the payment is delivered to the recipient, either electronic or paper.