Account Lifecycle and Status
Accounts move through a defined set of statuses that reflect their current state:State Transitions
- Processing → Active: Account setup or verification completes successfully
- Active → Disabled: Account is flagged for an issue or disabled after consent is withdrawn. May be reversible — listen for
account.updatewebhooks and retrieve the Account - Active → Closed: Method detects the account is closed at the financial institution (debt paid off, card canceled, loan settled)
- Disabled → Active: The issue is resolved and the account is re-enabled
- Closed is terminal — closed accounts do not reopen
Webhook tip: Subscribe to
account.update and account.closed webhook events to handle transitions in real time rather than polling. Retrieve the Account after account.update to inspect its current status.Key Webhooks
account.update: Account status or data changedaccount.closed: Account was closedupdate.update: An Update changed status; retrieve it to check for completion or failure
Subscriptions: Automatic Data Refresh
Instead of manually requesting Updates or Balances, you can subscribe an account to automatic refresh. When subscribed, Method periodically fetches fresh data and notifies you via webhook. See Update Subscriptions for details. Thesubscriptions and available_subscriptions arrays on each Account show what’s currently active and what can be enabled.
Products and the Lifecycle
Each account carries aproducts array — the list of Method capabilities currently available for that account. Products include: update (refresh balances/data), balance (real-time balance), payment (send funds to creditor), card_brand (card art and product name), payoff (eligible auto-loan and mortgage payoff quotes), sensitive (full account numbers), attribute (credit health metrics), and the typed Payment Instrument products payment_instrument.card, payment_instrument.network_token, and payment_instrument.inbound_achwire_payment.
Product availability depends on three factors:
- Account type:
card_brandapplies to supported card networks, whilepayoffapplies to eligible auto loans and mortgages (see Liability Types) - Account status: Disabled and Closed accounts lose most products
- Team configuration: Some products require team-level enablement (check
restricted_products)
products array before attempting an operation. Attempting an operation not in products will return an error. See the Products reference for the full list.