Link copied!
Use Partner Stores, Brands, and Store groups to describe where customers can shop with Klarna and how Klarna should present a Partner’s identity to customers. This resource explains how Acquiring Partners declare and manage these entities during onboarding and throughout the Partner lifecycle to maintain accurate references and consistent brand presentation.
Each Partner Account must include at least one store. Brands and Store groups allow Klarna to accurately represent Partners’ business identities across web, app, and in-store experiences.
Link copied!
A Partner Account can include multiple store groups. Each store group is linked to exactly one brand and one or more stores. Acquiring Partners must keep these relationships up to date so Klarna can display the correct brand and store information to customers.
Link copied!
Link copied!
Stores define where customers interact with Klarna’s payment services via a Partner.
Each store must include a unique store_reference provided by the Acquiring Partner. This reference lets Klarna correctly associate payments and fraud checks with the right store identity.
| Type | Definition |
|---|---|
| Website | Online store where Klarna’s payment products are shown. |
| Physical store | Brick-and-mortar location where a customer can use Klarna to pay for goods. |
| Mobile app | Mobile app where Klarna’s payment options can be used. |
When declaring stores, Acquiring Partners typically provide:
WEBSITE, PHYSICAL_STORE, or MOBILE_APP.url for web stores.address for physical stores.platform and bundle_names for mobile apps.Sample request — stores submitted during onboarding:​
Copied
{
"stores": [
{
"type": "WEBSITE",
"store_reference": "web131231",
"url": "https://example.com/store"
},
{
"type": "PHYSICAL_STORE",
"store_reference": "store1234",
"address": {
"street_address": "800 N. High St",Acquiring Partners can read and update store details through the following endpoints:
Link copied!
A brand is defined by a display name and associated visual assets that represent the Partner to customers.
Each brand must include a unique brand_reference provided by the Acquiring Partner. This reference links brands to their corresponding store groups.
Typical brand attributes include:
logo_urlicon_urlfeature_image_url<br />Sample request — brands submitted during onboarding:​​
Copied
{
"brands": [
{
"brand_reference": "partner_brand_01",
"display_name": "Cool Brand",
"element": {
"logo_url": "https://example.com/logo.png",
"icon_url": "https://example.com/icon.png",
"feature_image_url": "https://example.com/feature_image.png"
}
}
]At a minimum, Acquiring Partners must submit the following parameters when setting brand details during onboarding:
Acquiring Partners can read and update brand details through the following endpoints:
Link copied!
Store groups unify a Partner’s brand identity across multiple stores. Each store group must include a brand reference and contain one or more stores.
Acquiring Partners must submit at least one store group with the following parameters when onboarding their Partners:
Store groups can also carry shared customer-facing details that apply to all stores in the group, such as support contact information and social media links.
<br />Sample request — store_groups submitted during onboarding:
Copied
{
"store_groups": [
{
"store_group_reference": "STORE_NY004",
"brand_reference": "brand_002",
"stores": [
{
"type": "WEBSITE",
"store_reference": "web131231",
"url": "https://example.com/store"
}
],Acquiring Partners can read and update store groups through the following endpoints:
Link copied!
<br />
Link copied!