Lewati ke konten
Buat akun
atau
Masuk
Logo Dokumen Stripe
/
Tanya AI
Buat akun
Masuk
Mulai
Pembayaran
Pendapatan
Platform dan situs belanja online
Manajemen uang
Sumber daya pengembang
Gambaran Umum
Tentang pembayaran Stripe
Upgrade integrasi Anda
Analitik pembayaran
Pembayaran online
Gambaran umumTemukan contoh penggunaan AndaManaged Payments
Gunakan Payment Links
Buat halaman checkout
Bangun integrasi lanjutan
Bangun integrasi dalam aplikasi
Metode Pembayaran
Tambahkan metode pembayaran
    Gambaran umum
    Opsi integrasi metode pembayaran
    Kelola metode pembayaran default di Dashboard
    Tipe metode pembayaran
    Kartu
    Bayar dengan saldo Stripe
    Kripto
    Debit bank
      ACH Direct Debit
        Terima pembayaran
        Simpan detail bank
        Bermigrasi dari Charges API
        Migrasikan dari pemroses lain
        Rekening bank yang diblokir
        Kode SEC
      Debit Langsung Bacs
      Debit praotorisasi di Kanada
      Debit Langsung BECS Australia
      Debit Langsung BECS Selandia Baru
      Debit Langsung SEPA
    Halaman pembayaran bank
    Transfer bank
    Transfer kredit (Sumber)
    Beli sekarang, bayar nanti
    Pembayaran real-time
    Voucher
    Dompet
    Aktifkan metode pembayaran lokal menurut negara
    Metode pembayaran custom
Kelola metode pembayaran
Checkout lebih cepat dengan Link
Antarmuka pembayaran
Payment Links
Checkout
Web Elements
Elements dalam aplikasi
Skenario pembayaran
Tangani beberapa mata uang
Alur pembayaran custom
Akuisisi fleksibel
Orkestrasi
Pembayaran di tempat
Terminal
Di luar pembayaran
Dirikan perusahaan Anda
Kripto
Financial Connections
Climate
Pahami penipuan
Perlindungan penipuan Radar
Kelola sengketa
Verifikasikan identitas
BerandaPembayaranAdd payment methodsBank debitsACH Direct Debit

Migrating from another processor

Migrate verified bank accounts from another payment processor with the Payment Methods API.

If you have verified bank accounts that you’ve used to process ACH Direct Debit payments on another processor, you can migrate them to Stripe to begin accepting payments.

You and Stripe both share responsibility for maintaining proof of authorization to debit, as well as verification of the bank account.

Request a data migration with Stripe

Stripe works with you and your current payment processor to migrate data into your Stripe account. After the import completes, Stripe provides you with a CSV or JSON Mapping File to help you match the old customer IDs to the imported Stripe object IDs.

To request this option, submit an intake form and select the ACH payment type.

Manually migrate bank accounts from another payment processor

If you choose to migrate yourself, Stripe temporarily allows you to bypass bank account verification. To request this temporary capability, contact Stripe support and include details about how your business:

  • Collects authorization from customers
  • Verifies customer bank accounts

After Stripe enables this option, process each bank account and create a SetupIntent for each account:

  1. Create a new Customer object or retrieve an existing one to associate with this bank account.
Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node
Go
.NET
No results
curl -X POST https://api.stripe.com/v1/customers \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
  1. Create and confirm a SetupIntent with your saved bank account details and the date of your customer’s original authorization to debit the account.
Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node
Go
.NET
No results
curl https://api.stripe.com/v1/setup_intents \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -d "payment_method_types[]"=us_bank_account \ -d customer={{CUSTOMER_ID}} \ -d confirm=true \ -d "payment_method_options[us_bank_account][verification_method]"=skip \ -d "payment_method_data[type]"=us_bank_account \ -d "payment_method_data[billing_details][name]"={{ACCOUNT_HOLDER_NAME}} \ -d "payment_method_data[us_bank_account][routing_number]"={{ROUTING_NUMBER}} \ -d "payment_method_data[us_bank_account][account_number]"={{ACCOUNT_NUMBER}} \ -d "payment_method_data[us_bank_account][account_holder_type]"=individual \ -d "mandate_data[customer_acceptance][type]"=offline \ -d "mandate_data[customer_acceptance][accepted_at]"=1692821946
  1. Retrieve and store the PaymentMethod ID from the response to use for future payments. You can also retrieve it by listing all PaymentMethods for the customer.
Apakah halaman ini membantu?
YaTidak
  • Butuh bantuan? Hubungi Tim CS.
  • Bergabunglah dengan program akses awal kami.
  • Lihat log perubahan kami.
  • Ada pertanyaan? Hubungi Bagian Penjualan.
  • LLM? Baca llms.txt.
  • Dijalankan oleh Markdoc