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.
Property | Type | Description |
---|---|---|
id | string | Unique event id. The same event will have the same id |
version | string | Event version |
occurredAt | string | Timestamp of the event |
tenantId | string | Tenant unique id (GUID) |
tenantName | string | Tenant name |
application | string | Application |
productArea | string | Product area |
data | object | The container of the event details data object details |
data object details
Property | Type | Description |
---|---|---|
teamSiteId | string | The team site id |
userId | string | The unique id of the user |
contentId | string | The content id |
contentType | integer | The content type number |
updatedCustomProperties | array of objects | The updated custom properties updatedCustomProperties array object details |
updatedCustomProperties array object details
Property | Type | Description |
---|---|---|
propertyId | string | The property id |
propertyName | string | The property name |
propertyValues | array | The 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"
}
Updated 6 days ago