Update Shareholder

The endpoint allows to update an existing Shareholder.

SecuritybearerAuth
Request
path Parameters
Business-ID
required
string <uuid>

Business-ID

Shareholder-ID
required
string <uuid>

Shareholder-ID

Request Body schema: application/json

Request details

legal_name
string

Legal Name

person_type
string

Person type

Enum: "legal_person" "natural_person"
birth_date
string

Birth date in YYYY-MM-DD format

residence
string

Residence country in ISO 3166-1 alpha-2

direct_ownership_percentage
number <float>

Direct ownership percentage

Responses
200

The Shareholder has been updated

401

Unauthorized

403

Forbidden

404

Not found

422

Error

500

Internal Error

503

Maintenance or Service unavailable

patch/v1/businesses/{Business-ID}/shareholders/{Shareholder-ID}
Request samples
application/json
{
  • "legal_name": "John Smith",
  • "person_type": "legal_person",
  • "birth_date": "1990-12-31",
  • "residence": "AT",
  • "direct_ownership_percentage": 0.51
}
Response samples
application/json
{
  • "data": {
    }
}