发行系列分页查询
Request
ENDPOINT
/quota_distributor/issuance_seriesMÉTODO
GETSTATUS
200Query Params
| 参数 | 描述 |
|---|---|
issuance_serie_key | 发行系列唯一标识键 |
fund_class_document_number | 与发行系列相关的基金 CNPJ |
注意
在集成过程中,将要求对发送的哈希值进行身份验证。
情况01:返回一个发行系列
{
"data": [
{
"name": "Sample Issuance Serie Name",
"investment_category": "fidc",
"condominum_type": "open_ended",
"tax_classification": "long_term",
"investment_restriction_type": "professional",
"remuneration_type": "residual",
"issuance_serie_key": "UUID",
"minimum_share_capital": 0.0,
"accounting_date": "YYYY-MM-DD",
"start_date": "YYYY-MM-DD",
"original_quota_value": 1.0,
"serie": 1,
"maturity_date": "YYYY-MM-DD",
"sub_class": {
"name": "Sample Sub Class Name",
"sub_class_key": "UUID",
"subordination_level": 0,
"fund_class": {
"name": "Sample Fund Name",
"fund_class_key": "UUID",
"document_number": "00.000.000/0000-00",
"administrator": {
"name": "Sample Administrator Name",
"administrator_key": "UUID",
"document_number": "00.000.000/0000-00"
}
}
}
}
],
"limit": 50,
"page": 0,
"is_last_page": true
}
Issuance Serie
| 字段 | 类型 | 描述 |
|---|---|---|
name | string | 发行系列名称 |
investment_category | string | 投资类别(例如:fidc) |
condominium_type | string | 信托类型(open_ended 或 closed_ended) |
tax_classification | string | 税务分类(例如:long_term) |
investment_restriction_type | string | 投资限制类型(例如:professional) |
remuneration_type | string | 报酬类型(例如:residual) |
issuance_serie_key | string | 系列唯一标识键 |
minimum_share_capital | number | 系列最低资本额 |
accounting_date | string | 系列会计日期 |
start_date | string | 系列起始日期 |
original_quota_value | number | 原始份额价值 |
serie | number | 系列编号 |
maturity_date | string | 系列到期日期 |
sub_class | JSON | 包含子类信息的 Sub Class 对象 |
Sub Class
| 字段 | 类型 | 描述 |
|---|---|---|
name | string | 子类名称 |
sub_class_key | string | 子类唯一键 |
subordination_level | number | 从属级别 |
fund_class | JSON | 包含基金信息的 Fund Class 对象 |
Fund Class
| 字段 | 类型 | 描述 |
|---|---|---|
fund_class_key | string | 基金唯一标识键 |
document_number | string | 基金 CNPJ |
name | string | 基金名称 |
administrator | JSON | 包含管理员信息的 Administrator 对象 |
Administrator
| 字段 | 类型 | 描述 |
|---|---|---|
administrator_key | string | 管理员唯一标识键 |
name | string | 管理员名称 |
document_number | string | 管理员 CNPJ |