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}/addressMETHOD
PUTSTATUS
202Example
Request Body
{
"street": "Sample",
"number": "000",
"neighborhood": "Sample",
"city": "Sample",
"postal_code": "00000-000",
"uf": "SP",
"country": "BRA",
"complement": "sample",
}
Body Params
| Field | Type | Description | Characters | Required |
|---|---|---|---|---|
street | string | Street | 1 - 255 | Yes |
number | string | Number | 1 - 10 | Yes |
neighborhood | string | Neighborhood | 1 - 255 | Yes |
city | string | City | 1 - 255 | Yes |
postal_code | string | Postal Code | 9 | Yes |
uf | string | State. Ex.: SP / CE / MG | 2 | Yes |
country | string | Country. Ex.: BRA / EUA / ARG | 3 | Yes |
complement | string | Complement | 1 - 255 | No |
Response
Response Body
{
"investor_key": "UUID",
"investor_analysis_key": "UUID"
}