跳到主要内容

发送投资者注册数据


简介

本资源旨在向我们提供与人员类型相关的注册数据,这些数据将构成投资者的注册分析

输入/输出:

作为输入,需根据投资者类型(natural_personlegal_person)发送相应的注册数据。

作为输出,将返回 investor_keyinvestor_analysis_key

Request

ENDPOINT
/investor_registry/v2/investor/{investor_key}/investor_analysis/{investor_analysis_key}/registry_data
MÉTODO
PUT
STATUS
202

Request body

示例:发送自然人注册数据
Request Body
{
"name": "João da Silva",
"email": "joao.silva@example.com",
"phone": {
"international_dial_code": "55",
"area_code": "11",
"number": "1234567890"
},
"natural_person": {
"birthdate": "1990-05-15",
"gender": "male",
"mother_name": "Maria da Silva",
"nationality": "BRA",
"place_of_birth": {
"country": "BRA",
"uf": "SP",
"city": "São Paulo"
},
"marital_status": "single",
"spouse": {
"name": "Maria Santos",
"document_number": "123.456.789-00"
},
"profession": "Engenheiro",
"occupation": "Engenheiro de Software",
"occupation_company": {
"name": "Empresa XYZ Ltda",
"document_number": "12.345.678/0001-90"
}
}
}
示例:发送法人注册数据
Request Body
{
"name": "Empresa XPTO Ltda",
"email": "contato@empresaxpto.com.br",
"phone": {
"international_dial_code": "55",
"area_code": "11",
"number": "1234567890"
},
"legal_person": {
"legal_name": "Empresa XPTO Limitada",
"constitution_date": "2020-01-15"
}
}

Body params

字段类型描述字符数必填
namestring投资者姓名1-255
emailstring投资者电子邮件1-255
phoneobjectPhone 对象-
natural_personobjectNatural Person 对象(自然人必填)-是*
legal_personobjectLegal Person 对象(法人必填)-是*

* 当 person_typenatural_person 时,natural_person 为必填。当 person_typelegal_person 时,legal_person 为必填。

Natural Person

字段类型描述字符数必填
birthdatestring出生日期(格式:YYYY-MM-DD)10
genderstring性别。Gender 枚举值1-6
mother_namestring母亲全名1-255
nationalitystring国籍1-255
place_of_birthobjectPlace of Birth 对象-
marital_statusstring婚姻状态1-255
spouseobjectSpouse 对象-
professionstring职业1-255
occupationstring职位1-255
occupation_companyobjectOccupation Company 对象-

Gender

枚举值描述
male
female

Place of Birth

字段类型描述字符数必填
countrystring国家-
ufstring州 (UF)-
citystring城市-

Spouse

字段类型描述字符数必填
namestring配偶全名1-255
document_numberstring配偶 CPF 或 CNPJ14

Occupation Company

字段类型描述字符数必填
namestring公司名称1-255
document_numberstring公司 CNPJ18
字段类型描述字符数必填
legal_namestring公司注册名称1-255
constitution_datestring公司成立日期(格式:YYYY-MM-DD)10

Phone

字段类型描述字符数必填
international_dial_codestring国际区号1-3
area_codestring地区区号2
numberstring电话号码8-9

Response

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