PlexySDK DOCS

Alternative Payment Methods

Test credentials for wallets, bank transfers, and other payment methods

Alternative Payment Methods

Test credentials for non-card payment methods.

Digital wallets

Apple Pay

In test mode, Apple Pay uses a test card automatically. No special configuration needed.

Google Pay

EnvironmentTest Card
TestUses test card 4242424242424242

PayPal

EmailPasswordScenario
test-buyer@plexy.moneytestpasswordSuccessful payment
test-decline@plexy.moneytestpasswordPayment declined

Bank transfers

ACH (US)

Routing NumberAccount NumberScenario
110000000000123456789Success
110000000000111111116Insufficient funds
110000000000111111113Account closed

SEPA (EU)

IBANScenario
DE89370400440532013000Success
DE62370400440532013001Insufficient funds
DE35370400440532013002Account closed

iDEAL (NL)

BankScenario
ingSuccess
testVarious test scenarios

Buy Now Pay Later

Klarna

EmailScenario
test-approved@klarna.comApproved
test-denied@klarna.comDenied

Afterpay

EmailPhoneScenario
approved@afterpay.com0400000000Approved
declined@afterpay.com0400000001Declined

Vouchers and cash

Boleto (BR)

Boleto payments in test mode complete automatically after creation.

OXXO (MX)

OXXO vouchers in test mode can be manually completed in the Dashboard.

Crypto

Bitcoin

In test mode, Bitcoin payments use test network addresses.

Test flow

const payment = await plexy.payments.create({
  amount: 5000,
  currency: 'EUR',
  payment_method_types: ['ideal'],
  return_url: 'https://yoursite.com/complete'
});
if (payment.next_action?.redirect_url) {
  window.location.href = payment.next_action.redirect_url;
}

The test interface shows options to simulate success or failure.

See also

На этой странице