--- title: "Payment response for Hosted Payment Pages" url: "https://docs.adyen.com/online-payments/classic-integrations/hosted-payment-pages/hpp-payment-response" source_url: "https://docs.adyen.com/online-payments/classic-integrations/hosted-payment-pages/hpp-payment-response.md" canonical: "https://docs.adyen.com/online-payments/classic-integrations/hosted-payment-pages/hpp-payment-response" last_modified: "2026-05-26T13:48:54+02:00" language: "en" --- # Payment response for Hosted Payment Pages [View source](/online-payments/classic-integrations/hosted-payment-pages/hpp-payment-response.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. After shoppers have completed the payment, they are redirected to a result page of your choice. You can set a custom result URL in the Customer Area on the skin configuration page. Another option is to include the result URL in the `resURL` field in the payment request.

 Adyen appends parameters to this result URL to inform you about the payment status. If the status is already determined (either authorised or refused), you can use this information to display a payment successful or payment failed page. In a case when the current status is [pending](/online-payments/payment-result-codes), use paymentNBSP[webhooks](/development-resources/webhooks) to get the outcome of a payment request and store this result in your back office, if necessary. An example of a redirect URL to a result page: ```text http://yourSite.com/pRes.jsp ``` You can also add your own custom parameters to the redirect URL: ```text http://yourSite.com/pRes.jsp?order=ORDER_NUMBER ``` The next example shows a `resultURL` (corresponding to a redirect URL without custom parameters) with parameters appended by us to inform you of the payment status: ```text http://yourSite.com/pRes.jsp?merchantReference=Internet%20order%2012345&skinCode=4aD37dJA&shopperLocale=en_GB&authResult=AUTHORISED&pspReference=1211992213193029&merchantSig=CPb2cObMxmIIE0khO8WhEYyKDJs%3D ``` To ensure that the response is not tampered with validate the response by calculating the signature of the returned fields, except the merchantSig field. Adyen uses your secret HMAC key to sign the data, so the calculated signature should be the same as the `merchantSig` included in the response.