Skip to main content

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_accounts
METHOD
PUT
STATUS
202
Example
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.

FieldTypeDescriptionCharactersRequired
financial_institution_codestringFinancial Institution Code-Yes
account_numberstringBank account number-Yes
account_digitstringAccount digit-Yes
account_branchstringBranch number-Yes
main_accountbooleanDefines if it's the main account-No
shared_account_ownerslistList of objects that define the users-No

Shared Account Owners

FieldTypeDescriptionCharactersRequired
namestringAccount owner name1 - 100Yes
document_numberstringAccount owner document13 - 18Yes

Response

Response Body
{
"investor_key": "UUID",
"investor_analysis_key": "UUID"
}