Skip to main content
GET
/
v1
/
seller
/
meta
/
{channel}
/
seller
/
attributes
Channel Seller Attributes
curl --request GET \
  --url https://scx-sbx.api.jtl-software.com/v1/seller/meta/{channel}/seller/attributes \
  --header 'Authorization: Bearer <token>'
{
  "attributeListVersion": "2019060115430",
  "sellerAttributeList": [
    {
      "sellerId": "4711",
      "attributeList": [
        {
          "attributeId": "12323",
          "displayName": "Brand",
          "isMultipleAllowed": false,
          "type": "text",
          "values": [
            {
              "value": "Beer"
            },
            {
              "value": "Tee",
              "display": "Wine"
            }
          ],
          "attributeValueValidation": "/^[0-9]{13}$/",
          "conditionalMandatoryBy": [
            {
              "attributeId": "12323",
              "attributeValues": [
                "High"
              ]
            }
          ],
          "conditionalOptionalBy": [
            {
              "attributeId": "12323",
              "attributeValues": [
                "No Frame"
              ]
            }
          ],
          "required": true,
          "recommended": false,
          "section": "Colors and Appearance",
          "sectionPosition": 0,
          "isRepeatableSubSection": true,
          "subSection": "Length",
          "subSectionPosition": 0,
          "description": null,
          "isVariationDimension": true,
          "enumValues": [
            "Blue"
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer JWT issued to a seller after they sign up for a JTL-Scx subscription via the JTL Customer Center. Usage format: Bearer <JWT>.

Path Parameters

channel
string
required

Channel name whose seller-specific attribute set should be returned. This is the unique Channel name.

Pattern: ^\w{5,15}$
Example:

"MYBESTDEALCOMDE"

Response

List of seller-level attributes for the requested channel

attributeListVersion
string
Example:

"2019060115430"

sellerAttributeList
object[]