存款结息
已废弃
GET
/openapi/depositoperation/interestSettlement
请求参数
Body 参数application/json
accountNumber
string
结息账号
chargeCurrency
string
费用币种
currency
string
结息币种
orgCode
string
组织code
orgId
string
组织id
expectedInterestSettlementDate
string
计息截止日期
arriveDate
string
计息到账日期
claimAmount
string
本次认领金额
freeRate
number
费率
chargeAmount
number
费用
interestSettlementType
enum<integer>
结息类型
枚举值:
12
recBizType
string
收款业务类型
recWayCode
string
收款方式
benefitIds
string
收益ids
id
string
结息记录id
realityRedeemAmount
number
实际回收本金金额
whetherPrincipalInterestGather
enum<integer>
是否本息汇总
枚举值:
10
bizType
string
业务类型
bizId
string
存款id
description
string
结息说明
示例
{
"accountNumber": "string",
"chargeCurrency": "string",
"currency": "string",
"orgCode": "string",
"orgId": "string",
"expectedInterestSettlementDate": "string",
"arriveDate": "string",
"claimAmount": "string",
"freeRate": 0,
"chargeAmount": 0,
"interestSettlementType": 1,
"recBizType": "string",
"recWayCode": "string",
"benefitIds": "string",
"id": "string",
"realityRedeemAmount": 0,
"whetherPrincipalInterestGather": 1,
"bizType": "string",
"bizId": "string",
"description": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/openapi/depositoperation/interestSettlement' \
--header 'Content-Type: application/json' \
--data-raw '{
"accountNumber": "string",
"chargeCurrency": "string",
"currency": "string",
"orgCode": "string",
"orgId": "string",
"expectedInterestSettlementDate": "string",
"arriveDate": "string",
"claimAmount": "string",
"freeRate": 0,
"chargeAmount": 0,
"interestSettlementType": 1,
"recBizType": "string",
"recWayCode": "string",
"benefitIds": "string",
"id": "string",
"realityRedeemAmount": 0,
"whetherPrincipalInterestGather": 1,
"bizType": "string",
"bizId": "string",
"description": "string"
}'
返回响应
🟢200成功
application/json
Body
success
boolean
必需
code
integer
必需
msg
string
必需
data
object
必需
id
string
结息操作id
示例
{
"success": true,
"code": 0,
"msg": "string",
"data": {
"id": "string"
}
}