Link copied!
Define and manage Partner Stores, Brands, and Store Groups to ensure a seamless Klarna shopping experience. This resource outlines how Acquiring Partners must 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 online and in-app experiences.
Link copied!
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 ensures Klarna can correctly associate payments and fraud checks with the right store identity.
| Types | Definition |
|---|---|
| Website | Online store where Klarna’s payment products are shown |
| Physical store | Brick and mortar store where a customer can use Klarna to pay for goods |
| Mobile app | Mobile app where Klarna’s payment options can be used |
Sample request — stores submitted during onboarding:
Copied
{
"stores": [
{
"type": "WEBSITE",
"store_reference": "web131231",
"url": "https://example.com/store"
},
{
"type": "PHYSICAL_STORE",
"store_reference": "store1234",Acquiring Partners can read and update store details through the following endpoints:
Link copied!
A brand is defined by its display name and associated logos that represent the Partner to consumers.
Each brand must include a unique brand_reference provided by the Acquiring Partner. This reference links brands to their corresponding store groups.
<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:
<br />
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 group must include a brand reference and contain one or more stores.
Acquiring Partners must submit a minimum of one store group with the following parameters when onboarding their Partners:
<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!