ContentManagerUpdateContentCustomPropertyV1

Occurs when a content custom property is updated.

Webhook Payload

The webhook event is encapsulated within a common wrapper structure providing general information about the event.

PropertyTypeDescription
idstringUnique event id. The same event will have the same id
versionstringEvent version
occurredAtstringTimestamp of the event
tenantIdstringTenant unique id (GUID)
tenantNamestringTenant name
applicationstringApplication
productAreastringProduct area
dataobjectThe container of the event details data object details

data object details

PropertyTypeDescription
teamSiteIdstringThe team site id
userIdstringThe unique id of the user
contentIdstringThe content id
contentTypeintegerThe content type number
updatedCustomPropertiesarray of objectsThe updated custom properties updatedCustomProperties array object details

updatedCustomProperties array object details

PropertyTypeDescription
propertyIdstringThe property id
propertyNamestringThe property name
propertyValuesarrayThe property values

Example

{
  "id": "33E6D17AB7A2162E856AB0F99B71384DFC4FB1693B79845138F75BE3DA803F87",
  "version": "ContentManagerUpdateContentCustomPropertyV1",
  "occurredAt": "2024-04-01T14:59:06.859Z",
  "tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
  "tenantName": "demo",
  "data": {
    "teamSiteId": "1",
    "userId": "05d35808-0836-f84c-e4df-3dc777799a98",
    "contentId": "b59c4c3e-57fe-483c-80b4-289ccd6e029b",
    "contentType": 3,
    "updatedCustomProperties": [
      {
        "propertyId": "ddb360f9-7a9d-4ba1-9f71-68c80186642c",
        "propertyName": "demo_property",
        "propertyValues": [
          "9edb7f11-00f9-4b28-881b-332638d2c9036edb7f11-00f9-4b28-881b-332638d2c9036edb7f11-00f9-4b28-881b-332638d2c9036edb7f11-00f9-4b28-881b-332638d2c9036edb7f11-00f9-4b28-881b-332638d2c9036edb7f11-00f9-4b28-881b-332638d2c9036edb7f11-00f9-4b28-881b-332638d2c9036edb7f11-00f9-4b28-881b-332638d2c903123456789012"
        ]
      }
    ]
  },
  "application": "ContentManager",
  "productArea": "MarketingExperience"
}