business.removeOwner
Remove an ownership relationship between a Person and a Business entity.
POST http://api.kompliant.com/business.removeOwner (OpenAPI specification)
Usage Info
This method terminates the ownership relationship between a Person and a Business entity. Use this when ownership changes occur, such as when stakeholders sell their interest or leave the company. This operation affects only the relationship, not the underlying Person entity, which remains in the Subject Record.
Request
Authentication: KSig1-HMAC-SHA256
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| business_owner_id | string | Yes | The ID of the Business Owner. |
Example
{
"business_owner_id": "bo_5nCWRq51h3ILIJvOOhfF4i"
}
Response
Data
An empty data object is returned when the removal is successful.
Example
{
"meta": {
"status": "SUCCESS",
"trace_id": "trc_1JQM1eU9LBue2aRj9fN0Hb",
"version": "2025-03-24"
},
"data": {}
}
Errors
| Error Code | HTTP Code | Possible Cause |
|---|---|---|
| BAD_REQUEST | 400 | Required parameters not provided. Invalid values provided. |
| ENTITY_NOT_FOUND | 400 | The business_id provided does not exist. |
Updated 7 months ago