---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://pay.yandex.ru/docs/en/custom/split.md
  - href: en/custom/split.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://pay.yandex.ru/docs/en/llms.txt

# Connecting Yandex Split

By adding [Yandex Split](https://split.yandex.ru) to your site, you can give your customers an option to split payments for their Yandex Pay purchases.

To connect Yandex Split:

1. Register in the merchant [console](https://pay.yandex.ru/docs/en/console/index.md).
1. In the [Services](https://console.pay.yandex.ru/services) menu, select Split, create a request and conclude a contract.

   ![split-apply](_assets/split-apply.png)

1. Enable technical [integration by the API](https://pay.yandex.ru/docs/en/custom/index.md) or add a [CMS module](https://pay.yandex.ru/docs/en/cms/index.md).

To enable the Split payment method in the Yandex Pay form, add the payment method named `SPLIT` to `availablePaymentMethods`:

* When [integrating by adding a button](https://pay.yandex.ru/docs/en/custom/index.md#sequence), `availablePaymentMethods` is passed in the [/order/render](https://pay.yandex.ru/docs/en/custom/backend/merchant-api/archive/order-render.md#merchantrenderorderresponsedata)  response. When the buyer pays using Yandex Split, the merchant's backend will receive an [/order/create](https://pay.yandex.ru/docs/en/custom/backend/merchant-api/archive/order-create.md) request with the payment method (`paymentMethod`) equal to `SPLIT`.

* When [Integrating by adding a payment link](https://pay.yandex.ru/docs/en/custom/index.md#sequence-link), `availablePaymentMethods` is passed in the [link creation request](https://pay.yandex.ru/docs/en/custom/backend/yandex-pay-api/order/merchant_v1_orders-post.md#body).

{% note info %}

If you do not have a payment provider for accepting bank card payments, leave only the `SPLIT` method in `availablePaymentMethods`:

```json
"availablePaymentMethods": ["SPLIT"]
```

{% endnote %}
