ContentManagerCreateFileVersionV1
Occurs when a file version 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": "68F5C9CCBE2A03A1C69FF4976637E6AD49458A17F2B6A7AC8C43C86DA0E2A70D",
"version": "ContentManagerCreateFileVersionV1",
"occurredAt": "2024-04-28T18:41:43.42Z",
"tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
"tenantName": "postreleaseqawest1",
"data": {
"teamSiteId": "51f054a3-9e3d-40e7-9dd4-796aa34019c7",
"userId": "b26fa7a6-5060-7ce1-8cf2-9fc6a414dfdf",
"contentId": "aad766c8-a811-480f-864b-121dd2eb8098",
"contentName": "demo_content",
"contentVersionId": "7df5db5f-dd4a-4f9c-8d7e-dfd27ec99302",
"contentParentId": "0a08de0f-e392-41b5-a3f4-d52b96b94f5e",
"contentType": 3,
"format": "PNG"
},
"application": "ContentManager",
"productArea": "MarketingExperience"
}
Updated 6 days ago