Support longer fulfillment times with an extended authorisation.
In certain business models and market segments, the fulfillment of online orders may take longer due to the nature of the products offered and these extended timelines are clearly communicated upfront to manage customer expectations and highlight the unique value of the product.
Some examples of these are,
For these use cases, Klarna sets a default predefined authorization period up to 180 days instead of the standard 28 days. This allows enough time to complete fulfillment and capture the order.
This configuration is define during the onboarding to Klarna services. In case
In the case of a merchant were fulfillment time is tipically within the standard 28 days for Klarna authorization desired to support a rare or exceptional situation where genuinely require where more time to fulfill an order before it expires, you can extend its authorization period using the Order Management API.
<bold>This option is designed to provide flexibility when unexpected delays occur—not as a routine practice.
</bold>
To extend an order’s authorization, the system adds your account's configured expiration period to the date you initiate the extension. For example, if an order is placed on January 1 and your account has a 28-day expiration period, extending the order on January 15 will push the new expiration date to February 13.
Keep in mind:
To extend an order, send a POST request to the following endpoint:
{apiUrl}/ordermanagement/v1/orders/{order_id}/extend-authorization-time
Provide order_id
as a path parameter. The order_id
is the identifier you get in a successful response when [ placing a new order].
You don't need a request body for this POST
method.
Use this feature judiciously, and only when absolutely necessary.
If the request is successful, you'll receive a 204 No content response.
If your request contains errors, you'll receive an error response. Make sure the order is not expired or canceled and the order_id
is correct.
{
"error_code": "NOT_ALLOWED",
"error_messages": [
"Order is expired. Authorization time cannot be extended."
],
"correlation_id": "ef30ffe5-5c42-485a-85b6-8aeb24689bc8"
}
Sample of an error response to extend order authorization.
You can use the correlation_id
and the order_id
values to troubleshoot the call in the Merchant portal logs section.
Ready to send this request? See the API reference of this call.