转让
已废弃
GET
/openapi/depositoperation/fullTransfer
请求参数
Body 参数application/json
accountNumber
string
到账账号
arriveDate
string
转让到账日期
arriveInterest
number
转让到账利息
capitalAmount
number
转让本金
chargeAmount
number
转让费用
chargeCurrency
string
费用币种
currency
string
币种
bizId
string
存款id
bizNo
string
存款编号
depositType
string
存款类型
description
string
转让描述
id
null
操作 id
transferDate
string
转让日期
transferInterestRate
number
转让利率
orgId
string
组织id
orgCode
string
组织code
示例
{
"accountNumber": "string",
"arriveDate": "string",
"arriveInterest": 0,
"capitalAmount": 0,
"chargeAmount": 0,
"chargeCurrency": "string",
"currency": "string",
"bizId": "string",
"bizNo": "string",
"depositType": "string",
"description": "string",
"id": null,
"transferDate": "string",
"transferInterestRate": 0,
"orgId": "string",
"orgCode": "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/fullTransfer' \
--header 'Content-Type: application/json' \
--data-raw '{
"accountNumber": "string",
"arriveDate": "string",
"arriveInterest": 0,
"capitalAmount": 0,
"chargeAmount": 0,
"chargeCurrency": "string",
"currency": "string",
"bizId": "string",
"bizNo": "string",
"depositType": "string",
"description": "string",
"id": null,
"transferDate": "string",
"transferInterestRate": 0,
"orgId": "string",
"orgCode": "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"
}
}