资产注册 - 发行
创建 - 商业票据
使用以下端点,可以在结构化资产管理系统中注册一个新票据。
注册的资产初始状态为 pre_operational,以便提交与该资产相关的文件。这样可以预先注册资产,只有在正式手续完成后才启用其操作,详情见下一节。
以下列出了各字段的说明及其必填要求和类型。
Request
ENDPOINT
/security/securityMÉTODO
POSTRequest Body
{
"external_id": "string",
"asset_type": "commercial_paper",
"b3_code":"25M000000",
"isin_code":"BR00ABCDE000",
"contract_number": "SCR12345",
"ipoc_code": "string",
"maturity_date": "YYYY-MM-DD",
"allowed_managers": ["00.000.000/0000-00", "00.000.000/0000-00", "00.000.000/0000-00"],
"allowed_consultants": ["00.000.000/0000-00", "00.000.000/0000-00", "00.000.000/0000-00"],
"issuer_document_number": "00.000.000/0000-00",
"bookkeeper_document_number": "00.000.000/0000-00",
"number_of_units": 1,
"principal_unit_price": 1000000.00,
"issue_value": 1000000.00,
"issue_unit_price": 1000000.00,
"issue_date": "YYYY-MM-DD",
"amortization_type": "sac",
"installments": [
{
"installment_number": 1,
"maturity_date": "YYYY-MM-DD",
"principal_unit_price": 1000000.00,
"face_unit_price": 1010000.00,
"amortization_percentage": 1
}
],
"delay": {
"fine": {
"fine_type": "percentage",
"percentage_value": 0.0
},
"interest": {
"method": "compound",
"pre_fixed": {
"monthly_rate": 0.0,
"calendar_base": "calendar_360"
}
}
},
"pre_fixed": {
"monthly_rate": 0.01,
"calendar_base": "calendar_360"
},
"post_fixed": {
"lag": {
"amount": 1,
"reference": "daily"
},
"rate": 1,
"indexer": "di",
"calendar_base": "workdays"
}
}
定义
资产对象(请求体)
| 字段 | 类型 | 描述 | 必填 |
|---|---|---|---|
asset_type | string | 确定资产类型的枚举值 | 是 |
external_id | string | 资产的外部标识;用于访问实体的键 | 是 |
b3_code | string | 资产的 Cetip 代码 | 否 |
isin_code | string | ISIN 代码(国际证券识别码) | 否 |
ipoc_code | string | 资产的 IPOC 代码 | 否 |
allowed_managers | list | 有权在发行中操作的基金经理 CNPJ 列表 | 否 |
allowed_consultants | list | 有权在发行中操作的顾问 CNPJ 列表 | 否 |
issuer_document_number | string | 发行人的 CNPJ 或 CPF 编号 | 是 |
bookkeeper_document_number | string | 记账员的 CNPJ 编号 | 是 |
number_of_units | float | 单位数量 | 是 |
issue_unit_price | float | 发行时的单价 | 是 |
issue_value | float | 发行时的资产价值 | 是 |
principal_unit_price | float | 发行时资产的本金单价 | 是 |
issue_date | string | 发行日期,格式为 YYYY-MM-DD | 是 |
disbursement_date | string | 放款日期,格式为 YYYY-MM-DD | 是 |
amortization_type | string | 摊销类型的枚举值 | 是 |
contract_number | string | 合同编号 | 是 |
maturity_date | string | 资产到期日 | 是 |
installments | dict | 分期付款对象 | 是 |
delay | dict | 逾期对象 | 是 |
pre_fixed | dict | 固定利率对象 | 是 |
post_fixed | dict | 浮动利率对象 | 否 |
资产类型枚举
| 枚举值 | 描述 |
|---|---|
| commercial_paper | 商业票据类资产 |
| debenture | 债券类资产 |
| cri | CRI 类资产 |
| cra | CRA 类资产 |
摊销类型枚举
| 枚举值 | 描述 |
|---|---|
| sac | SAC 摊销类型 |
| price | Price 摊销类型 |