> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yorlet.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Payment methods

> Learn about the different supported payment methods.

export const Badge = ({type, size, children}) => {
  const normalizeSize = s => ['xs', 'sm', 'lg'].includes(s) ? s : 'base';
  const normalizeType = s => {
    return ['info', 'success', 'error', 'warning', 'secondary'].includes(s) ? s : 'default';
  };
  const sizes = {
    xs: {
      fontSize: '0.75rem',
      fontWeight: 500,
      padding: '0px 6px'
    },
    sm: {
      fontSize: '0.875rem',
      fontWeight: 500,
      padding: '0px 8px'
    },
    lg: {
      fontSize: '1.125rem',
      fontWeight: 600,
      padding: '0px 8px'
    },
    base: {
      fontSize: '1rem',
      fontWeight: 500,
      padding: '0px 8px'
    }
  };
  const colors = {
    default: {
      backgroundColor: '#cff5bf',
      color: '#14761c'
    },
    success: {
      backgroundColor: '#cff5bf',
      color: '#14761c'
    }
  };
  const colorClass = colors[normalizeType(type)];
  const sizeClass = sizes[normalizeSize(size)];
  return <div style={{
    ...colorClass,
    ...sizeClass,
    marginLeft: '4px',
    width: 'min-content',
    display: 'inline-block',
    borderRadius: '4px'
  }}>
      {children}
    </div>;
};

We currently support over 20 different payment methods that cover 135+ currencies, and we’re continuing to add more based on customer demand. Enabling an additional payment method is as simple as clicking a button. We automatically present your customers with the available methods based on the currency you’re charging in.

## Manage payment methods

To manage your payment methods, follow these steps:

1. Navigate to **Settings** > **Payment methods**.
2. To enable a payment method, click **Turn on**.
3. Clicking on a payment method will expand it’s card, showing you more information about the method.
4. If you want to use the payment method for invoice payments, you’ll need to click **Turn on** in the invoice payments section of a payment method’s card.

You can easily see at a glance which payment methods you have enabled, and whether they can be used for invoice payments.

## Cards

Cards are a popular way for consumers to make payments online. Yorlet supports global and local card networks. Learn more about [supported cards](/payments/payment-methods/cards).

| Global           | Europe           | US and Canada | Asia            |
| :--------------- | :--------------- | :------------ | :-------------- |
| Visa             | Cartes Bancaries | Discover      | JCB             |
| Mastercard       |                  |               | China Union Pay |
| American Express |                  |               |                 |
| Diners           |                  |               |                 |

## Bank debits

Bank debits are commonly used for high-value payments like rent. The business can debit the customer’s bank account directly without having to rely on them pushing funds.

| Global | Europe                                                    | US and Canada    | Asia              |
| :----- | :-------------------------------------------------------- | :--------------- | :---------------- |
| —      | [Bacs Direct Debit](/payments/payment-methods/bacs-debit) | ACH Direct Debit | BECS Direct Debit |
|        | [SEPA Direct Debit](/payments/payment-methods/sepa-debit) |                  |                   |
|        | [Autogiro](/payments/payment-methods/autogiro)            |                  |                   |

## Bank redirects

Bank redirects let customers pay online using their bank account.

| Global | Europe                                                                                                | US and Canada | Asia |
| :----- | :---------------------------------------------------------------------------------------------------- | :------------ | :--- |
| —      | [Pay by Bank](/payments/payment-methods/pay-by-bank) (UK)<Badge type="success" size="xs">Beta</Badge> | —             | —    |

## Bank transfers

Customers can use bank transfers to send money to a virtual bank account set up by Yorlet to reconcile payments automatically. Learn more about [bank transfers](/payments/payment-methods/bank-transfers).

| Global | Europe             | US and Canada | Asia |
| :----- | :----------------- | :------------ | :--- |
| —      | UK Bank Transfer   | —             | —    |
|        | SEPA Bank Transfer |               |      |

## Direct transfers

Customers pay online via their bank account directly into the platform’s client account. These payments happen outside of Yorlet. Learn more about [direct transfers](/payments/payment-methods/direct-transfers).

| Supported country                                          | Currency |
| :--------------------------------------------------------- | :------- |
| Sweden                                                     | EUR, SEK |
| United Kingdom<Badge type="success" size="xs">Beta</Badge> | GBP      |

## Wallets

Customers can use wallets to pay with a saved card. This provides a fast and secure way to pay and reduces fraud.

| Global                                        | Europe | US and Canada | Asia                                                                                           |
| :-------------------------------------------- | :----- | :------------ | :--------------------------------------------------------------------------------------------- |
| [Apply Pay](/payments/payment-methods/cards)  | —      | —             | [Alipay](/payments/payment-methods/alipay)<Badge type="success" size="xs">Beta</Badge>         |
| [Google Pay](/payments/payment-methods/cards) |        |               | [WeChat Pay](/payments/payment-methods/wechat-pay)<Badge type="success" size="xs">Beta</Badge> |
