申请份额锁定
简介
本资源旨在创建投资者的份额锁定申请。
输入/输出:
需发送锁定类型以及该锁定类型的具体信息。
作为输出,将返回代表份额锁定的 quota_lock_key。
Request
ENDPOINT
/quota_lock/investor/INVESTOR_KEY/quota_lockMÉTODO
POSTSTATUS
201通过担保锁定份额 - 自然人
{
"type": "collateral",
"collateral": {
"recipient": {
"name": "Sample Recipient Name",
"document_number": "000.000.000-00",
"person_type": "natural_person",
"natural_person": {
"birthdate": "YYYY-MM-DD",
"mother_name": "Sample Recipient Mother Name",
}
},
"borrower": {
"name": "Sample Borrower Name",
"document_number": "000.000.000-00",
"person_type": "natural_person",
"natural_person": {
"birthdate": "YYYY-MM-DD",
"mother_name": "Sample Borrower Mother Name",
}
},
"assets": [
{
"asset_type": "cce",
"credit_operation": {
"contract_number": "1000000001",
"principal_value": 0.0,
"interest_rate_type": "post_fixed",
"pre_fixed": {
"monthly_rate": 0.0,
"calendar_base": "calendar_360",
},
"post_fixed": {
"calendar_base": "workdays",
"indexer": "di",
"rate": 1,
"lag": {
"reference": "daily",
"amount": 1
},
},
},
},
],
"issuance_series": [
{
"issuance_serie_key": "UUID",
"number_of_quotas": 0.00,
"financial_value": 0.00,
},
{
"issuance_serie_key": "UUID",
"number_of_quotas": 0.00,
"financial_value": 0.00,
},
],
"bank_account_key": "UUID"
},
}
通过担保锁定份额 - 法人
{
"type": "collateral",
"collateral": {
"recipient": {
"name": "Sample Recipient Name",
"document_number": "000.000.000-00",
"person_type": "legal_person",
"legal_person": {
"activity_code": "00.00-0-00",
"representatives": [
{
"name": "Sample Recipient Representative Name",
"document_number": "000.000.000-00",
}
],
}
},
"borrower": {
"name": "Sample Borrower Name",
"document_number": "000.000.000-00",
"person_type": "legal_person",
"legal_person": {
"activity_code": "00.00-0-00",
"representatives": [
{
"name": "Sample Borrower Representative Name",
"document_number": "000.000.000-00",
}
],
}
},
"assets": [
{
"asset_type": "cce",
"credit_operation": {
"contract_number": "1000000001",
"principal_value": 0.0,
"interest_rate_type": "post_fixed",
"pre_fixed": {
"monthly_rate": 0.0,
"calendar_base": "calendar_360",
},
"post_fixed": {
"calendar_base": "workdays",
"indexer": "di",
"rate": 1,
"lag": {
"reference": "daily",
"amount": 1
},
},
},
},
],
"issuance_series": [
{
"issuance_serie_key": "UUID",
"number_of_quotas": 0.00,
"financial_value": 0.00,
},
{
"issuance_serie_key": "UUID",
"number_of_quotas": 0.00,
"financial_value": 0.00,
},
],
"bank_account_key": "UUID"
},
}
Quota Lock
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
type | string | 份额锁定类型枚举值 | 最多255 |
collateral | string | 担保 对象 | - |
Quota Lock Type
| 枚举值 | 描述 |
|---|---|
collateral | 担保 |
Collateral
| 字段 | 类型 | 描述 | 字符数 | 必填 |
|---|---|---|---|---|
recipient | JSON | 受益人 对象 | - | 是 |
borrower | JSON | 借款人 对象 | - | 是 |
assets | Array | 资产 对象列表 | - | 是 |
issuance_series | Array | 发行系列 对象列表 | - | 是 |
bank_account_key | string | 与担保关联的银行账户 UUID | - | 否 |
Recipient
| 字段 | 类型 | 描述 | 字符数 | 必填 |
|---|---|---|---|---|
name | string | 受益人姓名 | 最多255 | 是 |
document_number | string | 受益人 CPF / CNPJ | 14或18 | 是 |
person_type | string | 自然人或法人枚举值 | 最多255 | 是 |
natural_person | JSON | 自然人 对象 | - | 否 |
legal_person | JSON | 法人 对象 | - | 否 |
Borrower
| 字段 | 类型 | 描述 | 字符数 | 必填 |
|---|---|---|---|---|
name | string | 借款人姓名 | 最多255 | 是 |
document_number | string | 借款人 CPF / CNPJ | 14或18 | 是 |
person_type | string | 自然人或法人枚举值 | 最多255 | 是 |
natural_person | JSON | 自然人 对象 | - | 否 |
legal_person | JSON | 法人 对象 | - | 否 |
Person Type
| 枚举值 | 描述 |
|---|---|
natural_person | 自然人 |
legal_person | 法人 |
Natural Person
| 字段 | 类型 | 描述 | 字符数 | 必填 |
|---|---|---|---|---|
birthdate | string | 出生日期 | 10 | 是 |
mother_name | string | 母亲姓名 | 最多255 | 是 |
Legal Person
| 字段 | 类型 | 描述 | 字符数 | 必填 |
|---|---|---|---|---|
activity_code | string | 国家经济活动分类代码 (CNAE) | 10 | 是 |
representatives | array | 代表人 对象列表 | - | 是 |
Representative
| 字段 |
|---|