PlannerProjectDeleteV1
Occurs when a project is deleted.
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 |
---|---|---|
projectId | string | The unique identifier of the project |
eventTimestamp | integer | The timestamp of the event |
actorId | string | The unique identifier of the actor |
spaceId | string | The unique identifier of the space |
title | string | The title of the event |
description | string | The description of the event |
managerId | string | The unique identifier of the manager |
creatorId | string | The unique identifier of the creator |
plannedStartDate | integer | The planned start date of the event |
plannedEndDate | integer | The planned end date of the event |
plannedDuration | integer | The planned duration of the event |
actualStartDate | integer | The actual start date of the event |
actualEndDate | integer | The actual end date of the event |
actualDuration | integer | The actual duration of the event |
createdAt | integer | The timestamp of the creation of the event |
updatedAt | integer | The timestamp of the last update of the event |
isTemplate | boolean | The flag to indicate if the event is a template |
copyFrom | ['string', 'null'] | The unique identifier of the event to copy from |
templateId | ['string', 'null'] | The unique identifier of the template |
followers | array of objects | The list of followers followers array object details |
customProperties | array of objects | The list of custom properties customProperties array object details |
attachedTasks | array of objects | The list of attached tasks attachedTasks array object details |
attachedRequests | array of objects | The list of attached requests attachedRequests array object details |
attachedContent | array of objects | The list of attached content attachedContent array object details |
updateDiffs | array of objects | The list of field updates updateDiffs array object details |
followers array object details
Property | Type | Description |
---|---|---|
userId | string | The unique identifier of the follower |
customProperties array object details
Property | Type | Description |
---|---|---|
id | string | The unique identifier of the custom property |
multipleValue | boolean | The flag to indicate if the custom property has multiple values |
name | string | The name of the custom property |
customProperties | array of objects | The list of custom properties customProperties array object details |
customProperties array object details
Property | Type | Description |
---|---|---|
id | string | The unique identifier of the custom property |
value | string | The value of the custom property |
type | string | The type of the custom property |
attachedTasks array object details
Property | Type | Description |
---|---|---|
spaceId | string | The unique identifier of the space |
taskId | string | The unique identifier of the task |
attachedRequests array object details
Property | Type | Description |
---|---|---|
spaceId | string | The unique identifier of the space |
requestId | string | The unique identifier of the request |
attachedContent array object details
Property | Type | Description |
---|---|---|
spaceId | string | The unique identifier of the space |
contentId | string | The unique identifier of the content |
updateDiffs array object details
Property | Type | Description |
---|---|---|
fieldName | string | The name of the field |
before | string | The value before the update |
after | string | The value after the update |
Example
{
"id": "EB7E46F4AFF41E718749CAC8A5502F23D9468AA042DFF2A278A24133004B2642",
"version": "PlannerProjectDeleteV1",
"occurredAt": "2024-03-31T10:00:34.682Z",
"tenantId": "234b9f0d-853d-4210-b5d2-b0574e003fcc",
"tenantName": "demo",
"data": {
"projectId": "iXeq8cQHy0iFKTL0-1Fdew",
"eventTimestamp": 638474760346820000,
"actorId": "b26fa7a6-5060-7ce1-8cf2-9fc6a414dfdf",
"spaceId": "7v08TiMbm0y6uxsQHldhUQ",
"title": "Winter Demo",
"description": "<div>This is a demo project<br></div>",
"managerId": "b26fa7a6-5060-7ce1-8cf2-9fc6a414dfdf",
"creatorId": "b26fa7a6-5060-7ce1-8cf2-9fc6a414dfdf",
"plannedStartDate": 638668602000000000,
"plannedEndDate": 638677242000000000,
"plannedDuration": 11,
"actualStartDate": 0,
"actualEndDate": 0,
"actualDuration": 0,
"createdAt": 638474760346820000,
"updatedAt": 638474760346820000,
"isTemplate": false,
"copyFrom": null,
"templateId": null,
"followers": [
{
"userId": "b26fa7a6-5060-7ce1-8cf2-9fc6a414dfdf"
}
],
"customProperties": [
{
"id": "8DFDeqXPKk2ezl3L0iw_Lw",
"multipleValue": false,
"name": "test",
"customProperties": [
{
"id": "",
"value": "{\n \"id\": \"pqdvsmBQ4XyM8p_GpBTf3w\",\n \"type\": \"user\"\n}",
"type": "JObject"
}
]
}
],
"attachedTasks": [],
"attachedRequests": [],
"attachedContent": [],
"updateDiffs": []
},
"application": "EnablementPlannerService",
"productArea": "EnablementPlanner"
}
Updated 3 days ago