# MD for: https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/payment-brick/payment-submission/wallet-credits.md \> SERVER\_SIDE > > h1 > > Mercado Pago Wallet and Installments without Card Payments with Mercado Pago Wallet and Installments without card, the option to pay in installments without a credit card, do not need to be sent via the backend. If the user selects this option as a means of payment, the \`preferenceId\` sent at the initialization of the Brick is responsible for redirecting the buyer to the Mercado Pago website, where the payment will be made directly on our website. > WARNING > > Important > > If a \`preferenceId\` has only one valid payment method, the logo images of other available payment methods will not be displayed. To redirect the buyer back to your site, you can configure the \`back\_urls\` as described \[in this article\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/payment-brick/advanced-features/preferences#bookmark\_redirect\_the\_buyer\_to\_your\_site). > WARNING > > Do not use local domains in the \`back\_urls\` value, such as 'localhost/' or '127.0.0.1' with or without a specified port. We recommend using a server with a named domain (DNS) or development IPs to be able to return to the site after payment. Otherwise, the "Something went wrong" message will appear when the purchase process is completed. # Marketplace Marketplace is an e-commerce website/platform that connects sellers and buyers in a single sales environment, allowing the sale of products and services online with greater scope and potential for conversion. In addition to the necessary structure for conducting sales, some marketplaces take care of product arrangement, payment methods, and shipping, optimizing the sales process and facilitating business management. The division of values between the seller and the marketplace is automatically done through payment \_split\_, without the need for any action from the seller. > NOTE > > Important > > Mercado Pago's commission is deducted from the amount received by the seller. In other words, Mercado Pago's commission is deducted first, and then the commission from the marketplace is deducted from the remaining amount. To configure the marketplace on Checkout Bricks, follow the steps listed below. 1\. Create an \`access\_token\` for each seller following the documentation on \[OAuth\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/additional-content/security/oauth/creation). 2\. In the \[initialization configuration\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/common-initialization) of Bricks, add \`marketplace: true\`. \`\`\`javascript const settings = { initialization : { amount: 100, preferenceId: "", marketplace: true, }, }; \`\`\` 3\. Use the \`public\_key\` from your integrator account on the \*\*frontend\*\* and insert the seller's \`access\_token\`, obtained in step 1, in the \*\*backend or request header\*\*. 4\. To determine the marketplace commission percentage, fill the \`marketplace\_fee\` parameter with a value in the local currency (\*\*its default is 0\*\*) to be charged for each preference created in the API \[/checkout/preferences\](https://www.mercadopago.com.br/developers/en/reference/online-payments/checkout-pro/preferences/create-preference/post). Remember to add the preference ID in the Brick initialization. After completing these steps, Checkout Bricks will have been integrated into the marketplace and will be ready to process payments. > WARNING > > Attention > > In the marketplace flow, it is not possible to enable installment payments without a credit card. ## Test your integration With the integration completed, you will be able to test payment reception. For more information, access the section \[Make test purchase\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/integration-test/test-payment-flow).