ContentManagerDeleteFileV1
Occurs when a file is deleted.
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 for the teamsite |
userId | string | The unique id of the user |
contentId | string | The unique id of the content |
contentName | string | The name of the content |
contentVersionId | string | The unique id of the content version |
contentParentId | string | The unique id of the content's parent |
contentType | integer | The content type number |
format | string | The format of the content |
Example
{
"id": "C0969E382DC3074ED4DA054E630AB1572AE251AC89EF802C498ABB875087343C",
"version": "ContentManagerDeleteFileV1",
"occurredAt": "2024-04-02T02:52:15.902Z",
"tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
"tenantName": "demo",
"data": {
"teamSiteId": "1",
"userId": "05d35808-0836-f84c-e4df-3dc777799a98",
"contentId": "c885c97e-609c-46c6-888c-14a75249f4ed",
"contentName": "demo_content",
"contentVersionId": "6aeb653d-ea86-4553-889d-1c725b96a289",
"contentParentId": "69bd4869-d7ff-4941-9d68-bd15f32e764c",
"contentType": 3,
"format": "PDF"
},
"application": "ContentManager",
"productArea": "MarketingExperience"
}
Updated 6 days ago