# MD for: https://www.mercadopago.com.br/developers/en/docs/checkout-pro-orders/web-integration/redirect-buyer-to-checkout.md \> CLIENT\_SIDE > > h1 > > Redirect the buyer to checkout With the order created and the \`checkout\_url\` available, the next step is to redirect the buyer to the Mercado Pago payment environment. The buyer completes the payment on Mercado Pago and returns to your site through the return URLs configured in the previous step. ## Perform the redirect Obtain the \`checkout\_url\` from the \[order creation\](https://www.mercadopago.com.br/developers/en/docs/checkout-pro-orders/create-order) response and redirect the buyer to that address. \`\`\`javascript const checkoutUrl = "https://www.mercadopago.com.ar/checkout/v1/redirect?order\_id=ORDTST01KS5AJ6HTK2HRQ3XJ3C2JCKP9"; window.location.href = checkoutUrl; \`\`\` Set up \[payment notifications\](https://www.mercadopago.com.br/developers/en/docs/checkout-pro-orders/notifications) so your server receives real-time updates about the events that occur in your integration. With this, the redirect flow for the web integration is configured. The buyer is redirected to the Mercado Pago environment, completes the payment, and returns to your site through the configured return URLs. To finish the integration, set up \[payment notifications\](https://www.mercadopago.com.br/developers/en/docs/checkout-pro-orders/notifications) and follow the steps to \[go to production\](https://www.mercadopago.com.br/developers/en/docs/checkout-pro-orders/deploy-to-production).