ContentManagerCreateFileV1
Occurs when a file is created.
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": "65B9E27F534BC132C76544255E2AA865EDF2EF7D8CA725981E8F3651C4AE513F",
"version": "ContentManagerCreateFileV1",
"occurredAt": "2024-04-01T23:05:28.825Z",
"tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
"tenantName": "demo",
"data": {
"teamSiteId": "1",
"userId": "05d35808-0836-f84c-e4df-3dc777799a98",
"contentId": "437b804b-c393-409e-9268-6274fe01caeb",
"contentName": "demo_content",
"contentVersionId": "f3857490-1518-496f-85a2-d48e2dba5016",
"contentParentId": "f2099bd4-25f6-4da5-adb6-44fecbc10fe7",
"contentType": 3,
"format": "PPTX"
},
"application": "ContentManager",
"productArea": "MarketingExperience"
}
Updated 6 days ago