Events-Client Management
Overview
Webhook events related to the creation, update and deletion of legal entity and assigning user to legal entity.
Available events
Event type
Event schema
client-management.legalentity-created
{
"legalEntityId": "String",
"name": "String",
"type": "String",
"parentId": "String",
"legalInfo": "Object",
"accountLimit": "Object",
"CustomerGroupId": "String",
"customerGroups": ["Object"],
"addresses": ["Object"],
"documents": ["String"],
"approvalGroup": ["Object"],
"mixins": "Map",
"metadata": "Object",
"tenant": "String"
}
client-management.legalentity-updated
{
"legalEntityId": "String",
"name": "String",
"type": "String",
"parentId": "String",
"legalInfo": "Object",
"accountLimit": "Object",
"CustomerGroupId": "String",
"customerGroups": ["Object"],
"addresses": ["Object"],
"documents": ["String"],
"approvalGroup": ["Object"],
"mixins": "Map",
"metadata": "Object",
"tenant": "String"
}
client-management.legalentity-deleted
{
"tenant": "String",
"legalEntityId": "String",
"legalEntityParentId": "String"
}
client-management.user-assigned-to-legalentity
{
"tenant": "String",
"userId": "String",
"email": "String",
"legalEntityId": "String",
"type": "String",
"primary": "Boolean",
"assignmentId": "String"
}
Last updated
Was this helpful?