Creating an order differs for one-time and recurring payments. For one-time, send a POST with authorization token to Klarna. For recurring, generate a customer token first.
The process of creating an order is different for one-time and recurring payments.
For one-time payments, get the authorization token ready and send a request to Klarna API
For recurring payments, generate a customer token prior to placing the order
To create an order for a one-time payment, send a POST request to the {apiUrl}/payments/v1/authorizations/{authorizationToken}/order endpoint and include authorization_token in the path.
For example, if the authorization_token is b4bd3423-24e3, send your request to the {apiUrl}/payments/v1/authorizations/b4bd3423-24e3/order endpoint.
When you receive a success response, the customer gets charged and the Klarna payments session is closed.
As part of the response, you receive the following details:
order_id, an order identifier that you can later use to capture or refund the order using the Order management API
redirect_url, a URL to which you redirect the customer. This isn't included in the response received if you didn't include the URL when initiating a payment
fraud_status, an indicator of whether the transaction is suspected to be legitimate or fraudulent
authorized_payment_method, the payment method selected by your customer for this purchase
A success response to the order creation request for a one-time payment.
Send the customer browser to redirect_url provided in the response. Klarna places a cookie in the browser and redirects the customer back to the confirmation URL you provided when creating the session. This makes the checkout faster the next time the customer chooses to pay with Klarna.
An error response to the order creation request for a one-time payment.
Here are examples of common errors with troubleshooting suggestions. You can use the value in correlation_id to find entries related to the request under Logs in the Merchant portal.
Error code
Error message
Description
NOT_FOUND
Invalid authorization token
The authorization token has expired because the order was placed more than 60 minutes after authorization. To fix the error, request a new authorization_token and use it to place the order.
BAD_VALUE
Not matching fields: [billing_address.postal_code]
The data shared with Klarna in a previous step (create_session, load(), or authorize()) have been modified causing the validation to fail.
BAD_VALUE
Not matching fields: [Incorrect number of items in the cart. Expected: 2, Actual: 3]
The order lines or the cart were updated after the authorize() call. Please ensure that the cart is kept as-is or send a new authorization request.
REJECTED
Rejected
This is an edge case reason, but can be triggered in case the merchant is configured with being allowed to update the cart. This could be updated from the authorize to the place order in such a way that a new authorize is triggered. In this case this is rejected.
For recurring payments, you have to create a customer token before placing the order. This token identifies your customer and the payment method selected for the purchase. It also lets you charge the customer later, ad-hoc or at regular intervals.
For payments where you charge the customer at checkout and enable a recurring charge (intent set to buy_and_tokenize), you have to send two separate create order requests:
1.
In the first request, use authorization_token to charge the customer at checkout.
2.
In the second request, use customer_token for future recurring payments.
If you're not charging the customer at checkout (intent set to tokenize), you need to send only the second request to place the order and charge the customer at a later date.
If you're creating an order related to a subscription, include the subscription object in your create order request. Learn more about sharing subscription details with Klarna.
An error response to a create a customer token request.
Here are examples of common errors with troubleshooting suggestions. You can use the value in correlation_id to find entries related to the request under Logs in the Merchant portal.
Error code
Error message
Description
NOT_FOUND
Invalid authorization token
The authorization token has expired. Make sure to place within 60 minutes of authorization or re-authorize the purchase.
BAD_VALUE
Bad value: purchase_country
The billing address country is different from that of the country specified for this session.
BAD_REQUEST
X is not valid for creating customer tokens in Y
The selected payment method can't be tokenized in the specified country.
INVALID_OPERATION
Not allowed to create customer tokens for intent buy.
You can only create a token when the intent of the session is set to tokenize or buy_and_tokenize. [ Learn more about intent].
This section only applies to payment sessions where intent: buy_and_tokenize. For payments with intent: tokenize, [ create an order with a customer token].
To charge the customer at checkout, send a POST request to the {apiUrl}/payments/v1/authorizations/{authorizationToken}/order endpoint. Include the authorization token as a path parameter.
For example, if the authorization_token is b4bd3423-24e3, send your request to the {apiUrl}/payments/v1/authorizations/b4bd3423-24e3/order endpoint.
Include subscription details in the subscription object. These should match the details you previously shared with Klarna when initiating the payment session.
order_id, an order identifier that you can later use to capture or refund the order using the [ Order management API]
redirect_url, a URL to which you redirect the customer. This isn't included in the response received if you didn't include the URL when [ initiating a payment]
fraud_status, an indicator of whether the transaction is suspected to be fraudulent
authorized_payment_method, the payment method selected by your customer for this purchase
An error response to the order creation request for a recurring payment based on authorization_token.
Here are examples of common errors with troubleshooting suggestions. You can use the value in correlation_id to find entries related to the request under Logs in the Merchant portal.
Error code
Error message
Description
NOT_FOUND
Invalid authorization token
The authorization token has expired because the order was placed more than 60 minutes after authorization. To fix the error, [ request a new authorization_token] and use it to place the order.
BAD_VALUE
Not matching fields: [billing_address.postal_code]
The data shared with Klarna in a previous step (create_session, load, or authorize) have been modified causing the validation to fail.
BAD_VALUE
Not matching fields: [Incorrect number of items in the cart. Expected: 2, Actual: 3]
The order lines or the cart were updated after the authorize call. Please ensure that the cart is kept as-is or send a new authorize request.
REJECTED
Rejected
This is an edge case reason, but can be triggered in case the merchant is configured with being allowed to update the cart. This could be updated from the authorize to the place order in such a way that a new authorize is triggered. In this case this is rejected.
When creating an order with a customer token, include Klarna-Idempotency-Key in the request header.
Send a POST request to the {apiUrl}/customer-token/v1/tokens/{customerToken}/order endpoint and include the customer token as a path parameter.
For example, if the token_id is 0b1d9815-165e-42e2-8867-35bc03789e00, send your request to the {apiUrl}/customer-token/v1/tokens/0b1d9815-165e-42e2-8867-35bc03789e00/order endpoint.
Make sure to also include subscription details in the subscription object. These should match the details you previously shared with Klarna when initiating the payment session.
If your request doesn't pass our validation, you'll receive an error response.
JSON
1
2
3
4
5
6
{
"error_code" : "ERROR_CODE",
"error_messages" : ["Array of error messages"],
"correlation_id" : "Unique id for this request used for troubleshooting."
}
An error response to creation an order request based on a customer token.
Here are examples of common errors with troubleshooting suggestions. You can use the value in correlation_id to find entries related to the request under Logs in the Merchant portal.
Error code
HTTP status code
Description
TOKEN_NOT_FOUND
404
The customer token wasn't found. Make sure that customerToken in the path matches the token.
TOKEN_SUSPENDED
403
The customer token has been suspended by Klarna.
TOKEN_CANCELED
403
The customer token exists, but isn't linked to your merchant ID. Try again with another customer token.
UNAVAILABLE_PAYMENT_METHOD
403
The payment method can't be used for orders in the specified currency.
PAYMENT_METHOD_FAILED
403
Purchase for payment method failed. If a credit payment method was used, this is most likely due to the customer being rejected. Try resending your request.
BAD_REQUEST
400
SERVICE_UNAVAILABLE
503
A temporary internal Klarna error occurred. Try again later.