获取 Boleto 配置
列出 boleto 配置
返回基金类别下某个 boleto 档案的 boleto 配置的分页列表。仅允许负责该基金类别的管理人(manager)访问。
Request
ENDPOINT
/bankslip_collection/fund_class/FUND_CLASS_KEY/bankslip_profile/BANKSLIP_PROFILE_KEY/bankslip_configurationsMETHOD
GETPath Params
| 参数 | 描述 |
|---|---|
fund_class_key | 基金类别的键。若不存在则返回 404(NotFoundFundClass)。 |
bankslip_profile_key | boleto 档案的键,必须属于该基金类别。若未找到则返回 404(NotFoundBankslipProfile)。 |
Query Params
所有参数均为可选。
| 参数 | 类型 | 描述 |
|---|---|---|
issuer_type | string | 按发行方类型筛选(参见 发行方类型)。未知值将返回 InvalidValueForEntity 错误。 |
limit | int | 每页条目数,取值范围为 0 到 30。默认值:10。 |
page | int | 页码(从零开始)。默认值:0。 |
当 is_last_page 为 false 时,请请求下一个 page 以获取其余结果。
Response
Response Body
Response Body
{
"data": [
{
"bankslip_configuration_key": "1b382eb7-7006-4389-975b-afa76b0ad7b4",
"bankslip_profile": {
"bankslip_profile_key": "a1d7f09b-cb77-48da-a23d-b83d97d4b46b",
"bankslip_profile_code": "329-09-0001-0000000",
"bankslip_profile_number": 9,
"bankslip_provider": "qi_scd",
"additional_information": {
"requester_profile_key": "30f72181-042c-4aae-9be7-b2794916416f"
},
"internal_account_key": "18809219-17d9-4845-a830-51e7f2beaf28",
"fund_class": {
"fund_class_key": "92c63a0f-25d6-45cb-90a2-6026c0ce2ef9",
"document_number": "00.000.000/0001-01",
"name": "FUNDO DE INVESTIMENTO EM DIREITOS CREDITÓRIOS",
"manager": {
"name": "GESTÃO DE RECURSOS",
"manager_key": "7a5ff2f5-f127-451c-98d8-001826c35c3c",
"document_number": "00.100.100/0001-00"
}
}
},
"bankslip_issuer_type": "manager",
"delay": 0,
"our_number_range": {
"our_number_range_initial": 1,
"our_number_range_final": 99999
}
},
{
"bankslip_configuration_key": "9c47d1a8-3f2e-4b6d-8a1c-5e7f9b3d2c80",
"bankslip_profile": {
"bankslip_profile_key": "a1d7f09b-cb77-48da-a23d-b83d97d4b46b",
"bankslip_profile_code": "329-09-0001-0000000",
"bankslip_profile_number": 9,
"bankslip_provider": "qi_scd",
"additional_information": {
"requester_profile_key": "30f72181-042c-4aae-9be7-b2794916416f"
},
"internal_account_key": "18809219-17d9-4845-a830-51e7f2beaf28",
"fund_class": {
"fund_class_key": "92c63a0f-25d6-45cb-90a2-6026c0ce2ef9",
"document_number": "00.000.000/0001-01",
"name": "FUNDO DE INVESTIMENTO EM DIREITOS CREDITÓRIOS",
"manager": {
"name": "GESTÃO DE RECURSOS",
"manager_key": "7a5ff2f5-f127-451c-98d8-001826c35c3c",
"document_number": "00.100.100/0001-00"
}
}
},
"bankslip_issuer_type": "internal",
"delay": 1
}
],
"limit": 10,
"page": 0,
"is_last_page": true,
"elapsed_time_ms": 12.34
}
分页对象
| 字段 | 类型 | 描述 |
|---|---|---|
data | array | Bankslip Configuration 对象列表 |
limit | int | 每页获取的对象数量上限 |
page | int | 获取的页码 |
is_last_page | boolean | 指示获取的页面是否为最后一页 |
elapsed_time_ms | number | 服务器端查询执行时间(毫秒) |
Bankslip Configuration
| 字段 | 类型 | 描述 |
|---|---|---|
bankslip_configuration_key | string | boleto 配置的唯一标识符。 |
bankslip_profile | object | 关联的 boleto 档案(参见 Bankslip Profile)。 |
bankslip_issuer_type | string | boleto 发行方类型(参见 发行方类型)。 |
delay | int | 为 boleto 签发配置的延迟。 |
our_number_range | object | 分配给该配置的 "nosso número" 号段(参见 Our Number Range)。仅当配置分配了号段时出现。 |
Our Number Range
| 字段 | 类型 | 描述 |
|---|---|---|
our_number_range_initial | int | "nosso número" 号段的起始值。 |
our_number_range_final | int | "nosso número" 号段的结束值。 |
发行方类型
| 枚举值 | 描述 |
|---|---|
internal | 内部 |
manager | 管理人 |
consultant | 顾问 |