Send Investor Registry Data
Introduction
This resource aims to inform us of the registry data that will compose the registry analysis of an investor.
Input / Output:
The registry data changes according to the data passed in the Create investor step. Below are examples of which data should be sent for each variation.
As output, an investor_key and an investor_analysis_key will be delivered. The investor_analysis_key is used to identify the updated registry analysis. The investor_key is used to identify the investor to which the registry analysis belongs.
Request
ENDPOINT
/investor_registry/v2/investor/{investor_key}/investor_analysis/{investor_analysis_key}/bank_accountsMETHOD
PUTSTATUS
202Example
Request Body
[
{
"financial_institution_code": "000",
"account_number": "00000000000000000000",
"account_digit": "0",
"account_branch": "0000",
"main_account": true
},
{
"financial_institution_code": "000",
"account_number": "00000000000000000000",
"account_digit": "0",
"account_branch": "0000",
"shared_account_owners": [
{
"name": "Sample Name",
"document_number": "068.045.160-95"
}
]
}
]
Body params
info
The main_account parameter defines if the account is the investor's main account. If no account has this parameter, the first account sent will be used as the main account.
Additionally, only one can be sent as the main account.
| Field | Type | Description | Characters | Required |
|---|---|---|---|---|
financial_institution_code | string | Financial Institution Code | - | Yes |
account_number | string | Bank account number | - | Yes |
account_digit | string | Account digit | - | Yes |
account_branch | string | Branch number | - | Yes |
main_account | boolean | Defines if it's the main account | - | No |
shared_account_owners | list | List of objects that define the users | - | No |
Shared Account Owners
| Field | Type | Description | Characters | Required |
|---|---|---|---|---|
name | string | Account owner name | 1 - 100 | Yes |
document_number | string | Account owner document | 13 - 18 | Yes |
Response
Response Body
{
"investor_key": "UUID",
"investor_analysis_key": "UUID"
}