跳到主要内容

Borrower 对象

borrower 对象代表债务操作中的信贷借款人。用于 Lending-as-a-Service 的多个端点。

结构 — 自然人 (natural_person)

字段类型必填描述
person_typestring人员类型。值:naturallegal
namestring借款人全名。
document_numberstringCPF(11位数字,无标点)。
mother_namestring母亲姓名。
birth_datestring出生日期(格式 YYYY-MM-DD)。
nationalitystring国籍。
genderstring性别。值:malefemale
emailstring借款人电子邮件。
phoneobjectphone 对象。
addressobjectaddress 对象。
字段类型必填描述
person_typestring值:legal
company_namestring公司注册名称。
trading_namestring商业名称。
document_numberstringCNPJ(14位数字,无标点)。
foundation_datestring成立日期(格式 YYYY-MM-DD)。
emailstring企业电子邮件。
phoneobjectphone 对象。
addressobjectaddress 对象。

Phone

字段类型必填描述
country_codestring国家代码(如 "55")。
area_codestring区号(如 "11")。
numberstring电话号码。

示例

{
"person_type": "natural",
"name": "João da Silva",
"document_number": "12345678901",
"mother_name": "Maria da Silva",
"birth_date": "1990-01-01",
"phone": {
"country_code": "55",
"area_code": "11",
"number": "999999999"
},
"address": {
"street": "Rua Example",
"number": "123",
"neighborhood": "Centro",
"city": "São Paulo",
"state": "SP",
"postal_code": "01001000"
}
}