UserDeletedV1
Occurs when user is Delted.
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 user creation event. |
version | string | The schema version of the user creation event. |
occurredAt | string | The timestamp when the user creation event occurred. |
tenantId | string | The unique identifier of the tenant. |
tenantName | string | The name of the tenant. |
data | object | Detailed information about the user-related event. data object details |
application | string | The application through which the event was triggered. |
productArea | string | The product area related to the event. |
data object details
Property | Type | Description |
---|---|---|
id | string | The unique identifier of the created user. |
action | string | The action type of the event, e.g., 'Create'. |
tenant | string | The tenant associated with the user. |
userId | string | The unique identifier of the user. |
username | string | The username of the created user. |
string | The email address of the user. | |
isFullControl | boolean | Indicates if the user has full control permissions. |
userTimeZoneId | string | The time zone ID of the user. |
photoThumbnailId | string | The identifier for the user's thumbnail photo. |
phoneNumber | string | The phone number of the user. |
address | string | The address of the user. |
location | string | The location of the user. |
string | The Twitter handle of the user. | |
title | string | The professional title of the user. |
biography | string | The biography of the user. |
organization | string | The organization the user belongs to. |
linkedInId | string | The LinkedIn ID of the user. |
firstName | string | The first name of the user. |
lastName | string | The last name of the user. |
isDeleted | boolean | Indicates if the user is marked as deleted. |
isDeactivated | boolean | Indicates if the user is deactivated. |
languageCode | string | The language code preferred by the user. |
externalId | string | An external identifier for the user. |
managerId | string | The unique identifier of the user's manager. |
employeeNumber | string | The employee number of the user. |
costCenter | string | The cost center associated with the user. |
department | string | The department where the user works. |
hireDate | string | The date when the user was hired. |
managerName | string | The name of the user's manager. |
userType | string | The type of user, represented by a string or number. |
defaultContentProfileId | string | The default content profile identifier for the user. |
isLocked | boolean | Indicates if the user's account is locked. |
createdTime | string | The timestamp when the user account was created. |
lastModifiedTime | string | The last time the user details were modified. |
deletedTime | string | The time when the user was marked as deleted. |
singleSignOnUsername | string | The single sign-on username of the user. |
systems | array | List of systems the user has access to. |
extensionProperties | array of objects | The list of extension properties associated with the user. extensionProperties array object details |
userProfileProperties | array of objects | The list of custom properties in the user profile. userProfileProperties array object details |
directGroupIds | array | List of group identifiers that the user is directly a part of. |
extensionProperties array object details
Property | Type | Description |
---|---|---|
id | string | The unique identifier for the extension property. |
content | string | The content of the extension property. |
namespace | string | The namespace of the extension property. |
userProfileProperties array object details
Property | Type | Description |
---|---|---|
userPropertyId | string | The unique identifier of the user property. |
value | string | The value of the user property. |
Example
{
"id": "4d22c89a-6c2f-4b36-8cd8-218973dfe04f",
"version": "UserDeletedV1",
"occurredAt": "2023-01-20T21:13:25.268Z",
"tenantId": "b4d8bb18-dc97-4e18-8049-50a04edf453f",
"tenantName": "fsdev",
"data": {
"id": "07ce0ec9-9920-4700-9ae3-56526a8916f7",
"action": "Delete",
"tenant": "fsdev",
"userId": "07ce0ec9-9920-4700-9ae3-56526a8916f7",
"username": "luke",
"email": "[email protected]",
"isfullcontrol": false,
"userTimeZoneId": "Eastern Standard Time",
"photoThumbnailId": "07ce0ec9-9920-4700-9ae3-56526a8916f7",
"phoneNumber": "213123123",
"address": "",
"location": "",
"twitter": "",
"title": "",
"biography": "",
"organization": "",
"linkedInId": "",
"firstName": "luke",
"lastName": "luke",
"isDeleted": false,
"isDeactivated": false,
"languageCode": "en-US",
"externalId": "",
"managerId": "07ce0ec9-9920-4700-9ae3-56526a8916f7",
"employeeNumber": "",
"costCenter": "",
"department": "",
"hireDate": "",
"managerName": "shane",
"usertype": "1",
"defaultContentProfileId": "",
"isLocked": false,
"createdTime": "2024-05-14 12:21:11.167",
"lastModifiedTime": "2024-05-14 12:21:11.167",
"deletedTime": "2024-05-16 12:21:11.167",
"singleSignOnUsername": "",
"systems": [
"Seismic",
"Lessonly"
],
"extensionProperties": [
{
"id": "",
"content": "",
"namespace": ""
}
],
"userProfileProperties": [
{
"userPropertyId": "",
"value": ""
}
],
"directGroupIds": [
"0449ae8e-e904-4f9d-8b27-b67b58dc2250",
"62f6aa49-64d0-4c3e-aa3b-f8f02d4caaf7"
]
},
"application": "User",
"productArea": "UMS"
}
Updated 6 days ago