Borrower 对象
borrower 对象代表债务操作中的信贷借款人。用于 Lending-as-a-Service 的多个端点。
结构 — 自然人 (natural_person)
| 字段 | 类型 | 必填 | 描述 |
|---|---|---|---|
person_type | string | 是 | 人员类型。值:natural 或 legal。 |
name | string | 是 | 借款人全名。 |
document_number | string | 是 | CPF(11位数字,无标点)。 |
mother_name | string | 否 | 母亲姓名。 |
birth_date | string | 否 | 出生日期(格式 YYYY-MM-DD)。 |
nationality | string | 否 | 国籍。 |
gender | string | 否 | 性别。值:male、female。 |
email | string | 否 | 借款人电子邮件。 |
phone | object | 否 | phone 对象。 |
address | object | 否 | address 对象。 |
结构 — 法人 (legal_person)
| 字段 | 类型 | 必填 | 描述 |
|---|---|---|---|
person_type | string | 是 | 值:legal。 |
company_name | string | 是 | 公司注册名称。 |
trading_name | string | 否 | 商业名称。 |
document_number | string | 是 | CNPJ(14位数字,无标点)。 |
foundation_date | string | 否 | 成立日期(格式 YYYY-MM-DD)。 |
email | string | 否 | 企业电子邮件。 |
phone | object | 否 | phone 对象。 |
address | object | 否 | address 对象。 |
Phone
| 字段 | 类型 | 必填 | 描述 |
|---|---|---|---|
country_code | string | 是 | 国家代码(如 "55")。 |
area_code | string | 是 | 区号(如 "11")。 |
number | string | 是 | 电话号码。 |
示例
{
"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"
}
}