UserGroupUpdatedV1
Occurs when a user group 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 | Unique identifier for the group creation event. |
version | string | Version of the event schema. |
occurredAt | string | Timestamp when the event occurred, formatted as an ISO 8601 string. |
tenantId | string | Unique tenant identifier. |
tenantName | string | Name of the tenant. |
data | object | Data structure containing detailed information about the group creation event. data object details |
application | string | Application associated with the event. |
productArea | string | Product area related to the event. |
data object details
Property | Type | Description |
---|---|---|
id | string | Unique identifier of the data event. |
action | string | The action that triggered the event. |
tenant | string | Tenant related to the event. |
groupId | string | Unique group identifier. |
name | string | Name of the group. |
type | string | The type of group. |
parentId | string | The parent group identifier, if any. |
externalId | string | An external identifier for the group, if any. |
createdTime | string | The creation time of the event. |
isDeleted | boolean | Flag indicating if the group is deleted. |
isDeactivated | boolean | Flag indicating if the group is deactivated. |
lastModifiedTime | string | The last time the group was modified. |
deletedTime | string | The time the group was deleted. |
managerIds | array | Array of manager identifiers for the group. |
Example
{
"id": "4d22c89a-6c2f-4b36-8cd8-218973dfe04f",
"version": "UserGroupMemberChangeV1",
"occurredAt": "2023-01-20T21:13:25.268Z",
"tenantId": "b4d8bb18-dc97-4e18-8049-50a04edf453f",
"tenantName": "fsdev",
"data": {
"id": "d675de53-e998-4c72-a6f3-6e9d63a99914",
"action": "Update",
"tenant": "fsdev",
"groupId": "f68c05b7-b6a0-46bf-9b6d-d8fecd31db21",
"name": "luke",
"type": "Standard",
"parentId": "",
"externalId": "",
"createdTime": "2024-05-14 12:21:11.167",
"isDeleted": false,
"isDeactivated": false,
"lastModifiedTime": "2024-05-14 12:21:11.167",
"deletedTime": "2024-06-14 12:21:11.167",
"managerIds": [
"62f6aa49-64d0-4c3e-aa3b-f8f02d4caaf7",
"f15b1448-0af4-47bc-a1c5-ea5740fc7c1f"
]
},
"application": "UserGroup",
"productArea": "UMS"
}
Updated 6 days ago