DSRExpiredV1
Occurs when a dsr is expired
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 |
---|---|---|
id | string | The unique identifier for the DSR |
versionId | string | The version identifier for the DSR |
action | string | The action performed |
expiredAt | integer | The timestamp when the DSR expired |
name | string | The name of the event |
Example
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"version": "DSRExpiredV1",
"occurredAt": "2025-06-30T15:45:00Z",
"tenantId": "b4d8bb18-dc97-4e18-8049-50a04edf453f",
"tenantName": "exampleTenant",
"data": {
"id": "0a456a2a-df8b-48cc-876f-76c9ae095cf9",
"versionId": "08364a88-6b8e-8888-fc9c-cc03599c7041",
"action": "Expired",
"expiredAt": 1688123456789,
"name": "DsrExpiredSharedEvent"
},
"application": "Web",
"productArea": "Digital Rooms"
}
Updated 1 day ago