Skip to main content

Send Investor Registration Data


Introduction

This resource aims to inform us of the registration data that will compose the registration analysis of an investor.

Input / Output:

The registration 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 registration analysis. The investor_key is used to identify the investor to which the registration analysis belongs.

Request

ENDPOINT
/investor_registry/v2/investor/{investor_key}/investor_analysis/{investor_analysis_key}/address
METHOD
PUT
STATUS
202
Example
Request Body
{
"street": "Sample",
"number": "000",
"neighborhood": "Sample",
"city": "Sample",
"postal_code": "00000-000",
"uf": "SP",
"country": "BRA",
"complement": "sample",
}

Body Params

FieldTypeDescriptionCharactersRequired
streetstringStreet1 - 255Yes
numberstringNumber1 - 10Yes
neighborhoodstringNeighborhood1 - 255Yes
citystringCity1 - 255Yes
postal_codestringPostal Code9Yes
ufstringState. Ex.: SP / CE / MG2Yes
countrystringCountry. Ex.: BRA / EUA / ARG3Yes
complementstringComplement1 - 255No

Response

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