ContentManagerCopyFileV1
Occurs when a file 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 | 
| 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 | 
| destinationParentId | string | The unique id of the copied content's parent | 
| newContentId | string | The unique id of the new content | 
| newContentVersionId | string | The unique id of the new content version | 
Example
{
  "id": "9E6C0E43E1B19D40795D942552D2218E9ADE3A822F781583353C02684CF97504",
  "version": "ContentManagerCopyFileV1",
  "occurredAt": "2024-04-02T02:55:18.738Z",
  "tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
  "tenantName": "demo",
  "data": {
    "teamSiteId": "1",
    "userId": "05d35808-0836-f84c-e4df-3dc777799a98",
    "contentId": "2a12e102-7404-47c6-ab71-7d1a05b9bd63",
    "contentName": "demo_content",
    "contentVersionId": "6521bdf1-c93e-47f8-9b07-e9582bcd902f",
    "contentParentId": "1a0e057c-25b3-431f-be4a-f38f1d70fb84",
    "contentType": 3,
    "destinationParentId": "81447045-a8e4-4e08-8a46-1b66b6944d23",
    "newContentId": "0f381b33-883f-4379-bece-c04d66523d6b",
    "newContentVersionId": "467b0503-89ce-4ef0-91f0-ca14a05b7e92"
  },
  "application": "ContentManager",
  "productArea": "MarketingExperience"
}
Updated 2 days ago