ContentManagerMoveFileV1
Occurs when a file is moved.
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 |
destinationParentId | string | The unique id of the destination folder id |
newLibraryMaterializedPath | string | The library materialized path of the new content |
Example
{
"id": "E71616CE53C8741F12666110CE8F7C6ED57768F1CEFDD299AEBD80BBDC03BD37",
"version": "ContentManagerMoveFileV1",
"occurredAt": "2024-04-02T02:53:38.467Z",
"tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
"tenantName": "demo",
"data": {
"teamSiteId": "1",
"userId": "05d35808-0836-f84c-e4df-3dc777799a98",
"contentId": "2aec7639-6087-4b82-931e-f64edacc3b60",
"contentName": "demo_content",
"contentVersionId": "541a22fe-e3cf-4769-8782-3cac2f6786c2",
"contentParentId": "92d51c86-2c5d-4d2a-8f1c-b2f8a5e66bc9",
"destinationParentId": "0d486153-e769-465c-9ee1-8dd38a134ad2",
"newLibraryMaterializedPath": "92d51c86-2c5d-4d2a-8f1c-b2f8a5e66bc9/0d486153-e769-465c-9ee1-8dd38a134ad2/2aec7639-6087-4b82-931e-f64edacc3b60",
"contentType": 3,
"format": "PDF"
},
"application": "ContentManager",
"productArea": "MarketingExperience"
}
Updated 6 days ago