ContentManagerCopyFolderV1
Occurs when a folder is copied.
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 |
folderId | string | The unique id of the folder |
folderName | string | The name of the folder |
folderParentId | string | The unique id of the folder's parent |
folderVersionId | string | The unique id of the folder's version |
contentType | integer | The content type number |
destinationParentId | string | The unique id of the copied content's parent |
newFolderId | string | The unique id of the new folder |
newFolderVersionId | string | The unique id of the new folder's version |
Example
{
"id": "3B0C9E93C8B072FACB0EE76514FB8E1193DCC23229E9019FE7DD6CC9F4922B1E",
"version": "ContentManagerCopyFolderV1",
"occurredAt": "2024-04-28T18:40:24.85Z",
"tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
"tenantName": "demo",
"data": {
"teamSiteId": "51f054a3-9e3d-40e7-9dd4-796aa34019c7",
"userId": "b26fa7a6-5060-7ce1-8cf2-9fc6a414dfdf",
"folderId": "2bb3ca29-3a68-463b-a116-9e43b963e868",
"folderName": "demo_folder",
"folderParentId": "",
"folderVersionId": "48f48b55-d06b-40d5-8310-7bd5fb94345e",
"contentType": 98,
"destinationParentId": "26ed59a3-71b2-43f7-8539-528a0185f346",
"newFolderId": "0a08de0f-e392-41b5-a3f4-d52b96b94f5e",
"newFolderVersionId": "81349935-b162-4423-9822-adf1dfaac07a"
},
"application": "ContentManager",
"productArea": "MarketingExperience"
}
Updated 6 days ago