LivesendUpdatedV1
Occurs when an existing 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 |
|---|---|---|
| livesendId | string | The unique identifier for the Livesend |
| livesendVersionId | string | The version identifier for the Livesend |
| action | string | The action performed |
Example
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"version": "LivesendUpdatedV1",
"occurredAt": "2025-06-30T15:45:00Z",
"tenantId": "b4d8bb18-dc97-4e18-8049-50a04edf453f",
"tenantName": "exampleTenant",
"data": {
"livesendId": "0a456a2a-df8b-48cc-876f-76c9ae095cf9",
"livesendVersionId": "08364a88-6b8e-8888-fc9c-cc03599c7041",
"action": "Renamed"
},
"application": "Web",
"productArea": "Livesend"
}
Updated 1 day ago