ContentManagement API - Support list properties

Found in

EPiServer.ContentManagementApi 2.20.0

Fixed in

EPiServer.ContentDeliveryApi 3.6.0

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"
  }
]