结算中心计息单查询接口
开发中
POST
v3/settlement-center/newbis/interest-query
业务错误码#
错误码 | 错误描述(详情请看返回响应示例) | 解决方案 |
---|---|---|
000000 | 操作成功 | |
300000 | 业务处理异常 | 根据详细提示检查信息或联系相关技术人员进行排查 |
900001 | 入参校验错误 | 请检查入参信息(必填,格式,枚举值,长度等) |
请求参数
Body 参数application/json
page_no
integer | null
当前页
默认值:
1
page_size
integer | null
页大小
<= 200
默认值:
200
account_number_list
array[string] | null
账号信息
org_info_list
array[string] | null
组织信息
center_info_list
array[string] | null
结算中心信息
start_date
string <date> | null
计息开始日期
end_date
string <date> | null
计息结束日期
currency_code_list
array[string] | null
币种信息
state_list
array[integer] | null
状态
枚举值:
0123
示例
{
"page_no": 1,
"page_size": 200,
"account_number_list": [
"111111"
],
"org_info_list": [
"YOCYL组织名称"
],
"center_info_list": [
"YOCYL结算中心名称"
],
"start_date": "2024-11-10",
"end_date": "2024-11-12",
"currency_code_list": [
"CNY"
],
"state_list": [
3
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'v3/settlement-center/newbis/interest-query' \
--header 'Content-Type: application/json' \
--data-raw '{
"page_no": 1,
"page_size": 200,
"account_number_list": [
"111111"
],
"org_info_list": [
"YOCYL组织名称"
],
"center_info_list": [
"YOCYL结算中心名称"
],
"start_date": "2024-11-10",
"end_date": "2024-11-12",
"currency_code_list": [
"CNY"
],
"state_list": [
3
]
}'
返回响应
🟢200成功
application/json
Body
code
string
响应code
msg
string | null