TestWebhookEventV3

This event mentions GA release type, so it should show a GA callout on dev portal.

Webhook Payload

The webhook event is encapsulated within a common wrapper structure providing general information about the event.

PropertyTypeDescription
idstringUnique event id
versionstringEvent version
occurredAtstringTimestamp of the event
tenantIdstringTenant unique id (GUID)
tenantNamestringTenant name
applicationstringApplication
productAreastringProduct area
dataobjectThe container of the event details data object details

data object details

PropertyTypeDescription
hellostringJust 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"
}