ContentManagerContentVersionExpiredV1
Occurs when a content version is expired.
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 unique id of the teamsite |
| userId | string | The unique id of the user |
| contentId | string | The unique id of the content |
| contentVersionId | string | The unique id of the content version |
| contentName | string | The name of the content |
| contentType | integer | The content type id |
Example
{
"id": "5A7F20563EB7895F15958FB9501A8E0AAAFBAFC5E67453705FF68AFBD7D21191",
"version": "ContentManagerContentVersionExpiredV1",
"occurredAt": "2024-04-28T18:39:04.431Z",
"tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
"tenantName": "demo",
"data": {
"teamSiteId": "51f054a3-9e3d-40e7-9dd4-796aa34019c7",
"userId": "b26fa7a6-5060-7ce1-8cf2-9fc6a414dfdf",
"contentId": "8d48b5b4-7e25-43d5-8527-da47d6f062d3",
"contentName": "demo_content",
"contentVersionId": "96e86755-49be-41c5-a2fe-c70ceb4a51bb",
"contentType": 3
},
"application": "ContentManager",
"productArea": "MarketingExperience"
}
Updated 5 days ago