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.

PropertyTypeDescription
idstringThe unique identifier for the event
versionstringThe version of the event
occurredAtstringThe time the event occurred
tenantIdstringTenant ID
tenantNamestringTenant Name
dataobjectThe container of the event details data object details
applicationstringApplication
productAreastringProduct Area

data object details

PropertyTypeDescription
contentIdstringThe content identifier for the updated Livesend content
universalContentIdstringThe universal content identifier for the updated Livesend content
referencingLivesendsarray of objectsThe list of Livesends that reference the updated content referencingLivesends array object details
actionstringThe action performed

referencingLivesends array object details

PropertyTypeDescription
livesendIdstringThe unique identifier for the Livesend
livesendVersionIdstringThe 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"
}