Wells Fargo
Quick Start
- Sign up at wellsfargo.com and obtain API credentials
- Create a terminal in the Admin Console with the parameters below
- Start processing — the adapter is pre-built and ready to use
Overview
Card payments processor supporting one-phase and two-phase operations with refund/void pattern
| Provider ID | wellsfargo |
| Category | Card Processors |
| Website | wellsfargo.com |
Supported operations: start_tx capture_tx refund_tx void_tx status
Authentication
API Key + API Secret in headers
Payment Flow
Payment Flow
One-phase (direct charge):
- start_tx - Direct charge operation
- POST to
/payments - Payload includes merchant_account, amount, card details
- Returns transaction ID and status
- Status
approved→charged - Status
declined→rejected
- POST to
Two-phase (authorize + capture):
- start_tx - Authorization (hold amount)
- POST to
/paymentswithcapture=false - Status
approved→authorized
- POST to
- capture_tx - Capture authorized amount
- POST to
/payments/{id}/capture - Can capture partial amount
- Status
approved→charged
- POST to
Refund:
- refund_tx - Refund charged transaction
- POST to
/payments/{id}/refund - Can refund partial amount
- Returns refund status
- POST to
Void:
- void_tx - Cancel authorized transaction
- POST to
/payments/{id}/void - Only works for authorized (not captured) transactions
- POST to