发送投资者注册数据
简介
本资源旨在向我们提供构成投资者注册分析的注册数据。
输入/输出:
注册数据根据创建投资者步骤中传递的数据有所变化。以下是每种变体应发送的数据示例。
作为输出,将返回 investor_key 和 investor_analysis_key。investor_analysis_key 用于标识已更新的注册分析。 investor_key 用于标识注册分析所属的投资者。
Request
ENDPOINT
/investor_registry/v2/investor/{investor_key}/investor_analysis/{investor_analysis_key}/net_worthMÉTODO
PUTSTATUS
202示例
Request Body
{
"investor_category": "retail",
"total_net_worth": 0,
"total_financial_applications": 0,
"monthly_income": 0,
"other_incomes": 0,
"real_estate": 0,
"movable_assets": 0,
"resource_origin": "Possuo herança familiar"
}
Body params
| 字段 | 类型 | 描述 | 字符数 | 必填 |
|---|---|---|---|---|
total_net_worth | float | 总净资产 | - | 是 |
total_financial_applications | float | 金融申请总额 | - | 是 |
monthly_income | float | 投资者月收入或月营业额 | - | 是 |
real_estate | float | 不动产总额 | - | 是 |
movable_assets | float | 动产总额 | - | 是 |
other_incomes | float | 其他月收入 | - | 是 |
resource_origin | string | 资金来源(如有需要) | - | 是 |
investor_category | enumerator | 投资者自我申报的资质 | - | 是 |
Investor Category
| 枚举值 | 描述 |
|---|---|
retail | 零售 |
qualified | 合格 |
professional | 专业 |
Response
Response Body
{
"investor_key": "UUID",
"investor_analysis_key": "UUID"
}