docs
  1. Admin Api
  2. Resources
  3. Attribute Groups
  4. Create A New Attribute Group

Create a new attribute group

Create a new attribute group

Rate Limit: 300 Max attempts within 1 minute.

Request body

required
ParameterDetails
id
  • readonly
integer
Example:
1
name
  • required
string
Example:
color
frontendName
  • required
  • MinProps: 1
object
Example:
{
  "de_DE": "Farbe",
  "en_GB": "Color"
}
type
  • required
string
Enum:
simple
simpleList
localizedString
localizedStringList
advanced
advancedList
Example:
simple
isShared
  • required
boolean
Example:
true
level
  • required
string
Enum:
master
product
variant
image
brand
category
Example:
product
structure
  • nullable
object
Example:
{
  "group": {
    "type": "attributeGroup",
    "attributeGroupName": "Obermaterial"
  },
  "components": {
    "type": "array",
    "items": {
      "fraction": {
        "type": "integer"
      },
      "unit": {
        "type": "attribute",
        "attributeGroupName": "unit",
        "attributeName": "%"
      },
      "material": {
        "type": "attributeGroup",
        "attributeGroupName": "material"
      }
    }
  }
}
shopCountries
  • MinItems: 1
object
Example:
[
  {
    "shopKey": "ms",
    "countryCode": "de"
  }
]
shopKey
string
Example:
ms
countryCode
string
  • MinLength: 2
  • MaxLength: 2
Example:
DE
isOverridablePerShop
boolean
Example:
true
isDifferentiating
boolean
Example:
true
group
  • nullable
  • MinLength: 1
  • MaxLength: 255
string
Example:
someName

Responses

201
Attribute group was successfully created.
application/json
Success
id
integer
Example:
1
namerequired
string
Example:
color
required
object
Example:
{
  "de_DE": "Farbe",
  "en_GB": "Color"
}
typerequired
string
Example:
simple
isSharedrequired
boolean
Example:
true
levelrequired
string
Example:
product
object
Example:
{
  "group": {
    "type": "attributeGroup",
    "attributeGroupName": "Obermaterial"
  },
  "components": {
    "type": "array",
    "items": {
      "fraction": {
        "type": "integer"
      },
      "unit": {
        "type": "attribute",
        "attributeGroupName": "unit",
        "attributeName": "%"
      },
      "material": {
        "type": "attributeGroup",
        "attributeGroupName": "material"
      }
    }
  }
}
Array of object
Example:
[
  {
    "shopKey": "ms",
    "countryCode": "de"
  }
]
isOverridablePerShop
boolean
Example:
true
isDifferentiating
boolean
Example:
true
group
string
Example:
someName
400
Bad Request
application/json
Error
401
Unauthorized
application/json
Error
POST/attribute-groups

Request samples

Response samples

201
Simple Attribute Group:
Content type: application/json
Simple List Attribute Group:
Content type: application/json
Localized String Attribute Group:
Content type: application/json
Localized String List Attribute Group:
Content type: application/json
Advanced List Attribute Group:
Content type: application/json
Provide Feedback