TestWebhookEventV1
This event does not mention release type, so it should show an EA callout on dev portal.
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 | Unique event 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 |
|---|---|---|
| hello | string | Just a string |
Example
{
"id": "672138721224AC73424E45F14D65882AA81A2EDBDAD0B77FB5BEB474A461F6A7",
"version": "PlannerProjectCreateV1",
"occurredAt": "2024-03-31T10:00:34.682Z",
"tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
"tenantName": "demo",
"data": {
"hello": "webhooks"
},
"application": "TestService",
"productArea": "Test"
}
Updated 4 days ago