HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunityDoc feedbackLog In
GitHubNuGetDev CommunityDoc feedback

Property Groups

Describes the property groups for Optimizely Content Definitions API.

Property groups are the available tabs in edit view where properties are displayed. The name is the identifier of the group. You can change the built-in tabs by referencing their names, such as information and settings.

Example Property Group

{
  "name"        : "settings",
  "displayName" : "Settings",
  "sortOrder"   : 120,
  "systemGroup" : false
}

📘

Note

systemGroup is a read-only property that shouldn't be included when creating or updating groups.

Create Property Group

Creates a new property group in the system.

POST/api/episerver/v3.0/propertygroups

Update or Create Property Group

Updates or creates a property group in the system with the provided name. Also known as upsert.

PUT/api/episerver/v3.0/propertygroups/{name}

List Property Groups

List all property groups in the system.

GET/api/episerver/v3.0/propertygroups

Get Property Group

Gets a property group with the provided name.

GET/api/episerver/v3.0/propertygroups/{name}

Remove Property Group

Deletes the property group with the provided name.

DELETE/api/episerver/v3.0/propertygroups/{name}