Understand Payment Request as the step-up mechanism in Klarna's payment authorization. This resource explains when Payment Requests are created, how they enable the Purchase Journey, and how to manage their lifecycle.
Klarna creates a Payment Request only when additional customer interaction is required to complete a Payment Authorization. This occurs in step-up scenarios where the customer needs to review purchase details, provide consent, or complete verification steps before the payment authorization can be approved.
Payment Requests serve as the bridge between the initial payment authorization attempt and the customer's interaction with Klarna's Purchase Journey. They hold all the details that the customer will review and approve, ensuring a secure and compliant payment experience.
A Payment Request is a Klarna resource that represents a pending payment authorization requiring customer interaction. Klarna creates it automatically when a Payment Authorization cannot be immediately approved and returns a STEP_UP_REQUIRED result.
The Payment Request contains:
payment_request_id and payment_request_urlKlarna triggers a step-up when additional customer interaction is needed. This can occur for several reasons:
When step-up is required, the Acquiring Partner receives a STEP_UP_REQUIRED result in the Payment Authorization response, along with a payment_request object containing the necessary details to launch the Purchase Journey.
The Purchase Journey is Klarna's customer-facing flow where customers review and approve payment authorizations during step-up scenarios. The Acquiring Partner launches this journey by directing the customer to the payment_request_url provided in the Payment Request.
The Purchase Journey can be launched using different methods depending on the integration type:
payment_request_url for web-based integrations.app_return_url for mobile app integrations to launch Klarna's native experience.Payment Requests progress through several states during their lifecycle. A Payment Request remains open for 3 hours before expiring.
| State | Description |
|---|---|
SUBMITTED | Initial state. Payment Request has been created and is waiting for the customer to enter the Purchase Journey. |
IN_PROGRESS | The customer is in Klarna's Purchase Journey reviewing and approving the payment authorization. |
COMPLETED | The customer has completed the Purchase Journey and approved the payment authorization. A Klarna Network Session Token is issued to authorize the final transaction. |
EXPIRED | Payment Request expired after 3 hours without completion. |
CANCELED | Payment Request was canceled by the Acquiring Partner before authorization. |
DECLINED | Payment Request was declined during the authorization process (e.g., no payment methods available for the customer). |
For information on how to monitor Payment Request state changes and retrieve the Klarna Network Session Token, see the Monitoring Payment Requests section below.
Acquiring Partners must monitor Payment Request state changes to know when the customer has completed the Purchase Journey and retrieve the Klarna Network Session Token, needed to finalize the payment authorization.
payment.request.state-change.completed webhooks to receive notifications when the state changes to COMPLETED.klarna_network_session_token from the state_context when state is COMPLETED.Klarna recommends that Acquiring Partners proactively cancel Payment Requests that haven't resulted in successful transactions, especially if the Partner's timeout is less than Klarna's default of 3 hours.
Payment Requests are created as part of the Payment Authorization flow when step-up is required:
step_up_configresult: STEP_UP_REQUIRED and a payment_request objectThe Payment Request bridges the initial authorization attempt and the final authorization decision after customer interaction.
Payment Requests benefit from interoperability when the customer has previously interacted with Conversion features. The Klarna Network Session Token preserves this context, potentially enabling faster approval or reduced friction during the Purchase Journey.
Related articles