HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySubmit a ticketLog In
GitHubNuGetDev CommunitySubmit a ticket

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 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. They are also known as upsert.

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

List property groups

List 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}