发送投资者注册数据
简介
本资源旨在向我们提供构成投资者注册分析的注册数据。
输入/输出:
注册数据根据创建投资者步骤中传递的数据有所变化。以下是每种变体应发送的数据示例。
作为输出,将返回 investor_key 和 investor_analysis_key。investor_analysis_key 用于标识已更新的注册分析。 investor_key 用于标识注册分析所属的投资者。
Request
ENDPOINT
/investor_registry/v2/investor/{investor_key}/investor_analysis/{investor_analysis_key}/addressMÉTODO
PUTSTATUS
202示例
Request Body
{
"street": "Sample",
"number": "000",
"neighborhood": "Sample",
"city": "Sample",
"postal_code": "00000-000",
"uf": "SP",
"country": "BRA",
"complement": "sample",
}
Body Params
| 字段 | 类型 | 描述 | 字符数 | 必填 |
|---|---|---|---|---|
street | string | 街道 | 1-255 | 是 |
number | string | 门牌号 | 1-10 | 是 |
neighborhood | string | 社区 | 1-255 | 是 |
city | string | 城市 | 1-255 | 是 |
postal_code | string | 邮政编码 | 9 | 是 |
uf | string | 州。例如:SP / CE / MG | 2 | 是 |
country | string | 国家。例如:BRA / EUA / ARG | 3 | 是 |
complement | string | 补充信息 | 1-255 | 否 |
Response
Response Body
{
"investor_key": "UUID",
"investor_analysis_key": "UUID"
}