LivesendContentUpdatedV1
Occurs when content referenced by a Livesend is updated
Early Access
This service is subject to change with limited or no warning. Please work closely with your CSM and our Services team if you are interested in using this webhook.
Webhook Payload
The webhook event is encapsulated within a common wrapper structure providing general information about the event.
| Property | Type | Description |
|---|---|---|
| id | string | The unique identifier for the event |
| version | string | The version of the event |
| occurredAt | string | The time the event occurred |
| tenantId | string | Tenant ID |
| tenantName | string | Tenant Name |
| data | object | The container of the event details data object details |
| application | string | Application |
| productArea | string | Product Area |
data object details
| Property | Type | Description |
|---|---|---|
| contentId | string | The content identifier for the updated Livesend content |
| universalContentId | string | The universal content identifier for the updated Livesend content |
| referencingLivesends | array of objects | The list of Livesends that reference the updated content referencingLivesends array object details |
| action | string | The action performed |
referencingLivesends array object details
| Property | Type | Description |
|---|---|---|
| livesendId | string | The unique identifier for the Livesend |
| livesendVersionId | string | The version identifier for the Livesend |
Example
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"version": "LivesendContentUpdatedV1",
"occurredAt": "2025-06-30T15:45:00Z",
"tenantId": "b4d8bb18-dc97-4e18-8049-50a04edf453f",
"tenantName": "exampleTenant",
"data": {
"contentId": "c3d4e5f6-7890-abcd-ef12-345678901234",
"universalContentId": "Meetings__ExternalVideo__5882062c-60a7-4482-8469-56e7b8c9d24a",
"action": "VersionChanged",
"referencingLivesends": [
{
"livesendId": "5882062c-60a7-4482-8469-56e7b8c9d24a",
"livesendVersionId": "74b70bb8-8802-a1fd-f201-890375a60c8f"
},
{
"livesendId": "08f0448e-079b-186e-a718-eb9ca3d94674",
"livesendVersionId": "4963e141-b0f8-a388-4619-9c394a0167ae"
}
]
},
"application": "Web",
"productArea": "Livesend"
}
Updated 1 day ago