Integration Guides
Customer Journey
- Customer API Overview
- Authentication
API 2.x Reference
- Authorization
- Settings Controller
- IP Controller
- Two-Factor Authentication
- User Access - Password
- Session Controller
- Tenant
- Customers B2X
- Customers B2X API
- Wallet API
- B2C
- Address Management
- B2B / Organization
- Wallet
- Transfer Order
Create a New Shareholder
Create a new shareholder
POST
/
api
/
v2.1
/
shareholder
/
create
Copy
curl --request POST \
--url https://sandbox.finhub.cloud/api/v2.1/shareholder/create \
--header 'Content-Type: application/json' \
--header 'X-Forwarded-For: <x-forwarded-for>' \
--data '{
"organizationId": "<string>",
"customerId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"phoneNumber": "<string>",
"dateOfBirth": "2022-03-10T00:00:00.000Z",
"nationality": "<string>",
"address": "<string>",
"city": "<string>",
"country": "<string>",
"postalCode": "<string>",
"sharePercentage": 50,
"shareholderType": "<string>",
"isPep": true,
"isUbo": true,
"idDocumentType": "<string>",
"idDocumentNumber": "<string>",
"idDocumentExpiryDate": "2022-03-10T00:00:00.000Z"
}'
Copy
{
"success": true,
"message": "<string>",
"data": "<any>"
}
Headers
Forwarded client IP address
Client user agent information
Tenant identifier for multi-tenant operations
Body
application/json
Response
200
application/json
Shareholder created successfully
The response is of type object
.
Copy
curl --request POST \
--url https://sandbox.finhub.cloud/api/v2.1/shareholder/create \
--header 'Content-Type: application/json' \
--header 'X-Forwarded-For: <x-forwarded-for>' \
--data '{
"organizationId": "<string>",
"customerId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"phoneNumber": "<string>",
"dateOfBirth": "2022-03-10T00:00:00.000Z",
"nationality": "<string>",
"address": "<string>",
"city": "<string>",
"country": "<string>",
"postalCode": "<string>",
"sharePercentage": 50,
"shareholderType": "<string>",
"isPep": true,
"isUbo": true,
"idDocumentType": "<string>",
"idDocumentNumber": "<string>",
"idDocumentExpiryDate": "2022-03-10T00:00:00.000Z"
}'
Copy
{
"success": true,
"message": "<string>",
"data": "<any>"
}
Assistant
Responses are generated using AI and may contain mistakes.