Skip to main content

Overview

monei.paymentMethod save and manage cards or bank accounts for fast repeat deposits.

List Payment Methods

const { paymentMethods } = await monei.paymentMethod.getAll('sub-wallet-id');

Add a Payment Method

const pm = await monei.paymentMethod.create({
  type: 'card',
  cardNumber: '4111111111111111',
  expiryMonth: '12',
  expiryYear: '2027',
  cvv: '123',
  subWalletId: 'sub-wallet-id',
});

Get Payment Method Details

const pm = await monei.paymentMethod.get('pm-id');

Set Default Payment Method

await monei.paymentMethod.set('pm-id');

Delete a Payment Method

await monei.paymentMethod.delete('pm-id');