--- title: "Split HPP payment with Adyen for Platforms" url: "https://docs.adyen.com/online-payments/classic-integrations/hosted-payment-pages/split-hpp-payment-with-marketpay" source_url: "https://docs.adyen.com/online-payments/classic-integrations/hosted-payment-pages/split-hpp-payment-with-marketpay.md" canonical: "https://docs.adyen.com/online-payments/classic-integrations/hosted-payment-pages/split-hpp-payment-with-marketpay" last_modified: "2026-05-26T13:48:54+02:00" language: "en" --- # Split HPP payment with Adyen for Platforms [View source](/online-payments/classic-integrations/hosted-payment-pages/split-hpp-payment-with-marketpay.md) **Hosted Payment Pages are no longer available** To accept payments through an Adyen-hosted page, use our [Hosted Checkout](/online-payments/build-your-integration/sessions-flow?platform=Web\&integration=Hosted%2BCheckout). This page is for the classic Hosted Payment Pages (HPP) integration, which has reached end-of-life. We are no longer processing transactions though HPP. To accept a payment using one of the [local payment methods](/payment-methods) (for example, iDEAL or SEPA), make a payment request to the [Hosted Payment Pages API](/online-payments/classic-integrations/hosted-payment-pages/hosted-payment-pages-api) endpoint and pass split instructions using the `split` prefix. In the example below, `paymentAmount` and `currencyCode` fields contain payment details, `brandCode` and `issuerId` specify the local payment method,  while `split.`  fields contain instructions on how to split a payment. In this case, EUR 62.00 will be split between an account holder's account (EUR 60.00) and your marketplace commission (EUR 2.00). HTML:  ```xml
``` curl:  ```bash curl https://test.adyen.com/hpp/skipDetails.shtml \ -d merchantReference=marketpay-test-6426782037 \ -d merchantAccount=TestMerchant \ -d paymentAmount=6200 \ -d currencyCode=EUR \ -d brandCode=ideal \ -d issuerId=1121 \ -d skinCode=4aD37dJA \ -d sessionValidity=2018-10-11T10%3A30%3A00Z \ -d shopperLocale=en_GB \ -d split.api=1 \ -d split.nrOfItems=2 \ -d split.totalAmount=6200 \ -d split.currencyCode=EUR \ -d split.item1.amount=6000 \ -d split.item1.type=MarketPlace \ -d split.item1.account=151272963 \ -d split.item1.reference=6124145 \ -d split.item1.description="Porcelain Doll: Eliza (20cm)" \ -d split.item2.amount=200 \ -d split.item2.type=Commission \ -d split.item2.reference=6124146 \ -d merchantSig=94AwPXSxs0ECicXi1UDdKEmdzHQ6rf7EF9CC%2FzUO5Tg%3D ```