Don't miss out Virtual Happy Hour today (April 26).

Try our conversational search powered by Generative AI!

ContentManagement API - Support list properties

Found in

EPiServer.ContentManagementApi 2.20.0

Fixed in

EPiServer.ContentDeliveryApi 3.6.0

(Or a related package)

Created

Oct 07, 2022

Updated

Dec 02, 2022

State

Closed, Acceptance tests pass


Description

Optimizely Content Cloud supports list of properties (such as a list of blocks).

Usage:

When not flattened format:

"blockList": {
        "value" : [
            {
                "blockHeading" : {
                      "value" : "Heading_1"                  
                 }
            },
            {
                "blockHeading" : {
                     "value""Heading_2"             
                }
            }
        ]
    }

When format is set to flattened:

"blockList": [
  {             
    "blockHeading" : "Heading_3"         
  },
  {             
    "blockHeading" : "Heading_4"
  }
]