acctSys
  1. 账户类接口
acctSys
  • MCC码-商户类别码
  • YINSHENG-网银支付(充值交易)支持银行
  • 交易类接口
    • 充值
      POST
    • 转账
      POST
    • 提现
      POST
    • 交易结果查询
      POST
    • 交易明细查询
      POST
  • 账户类接口
    • 账户余额查询
      POST
  • 其他类接口
    • 文件上传
      POST
    • 文件下载
      POST
  • 通知类接口
    • 交易回调通知接口
      POST
  • 绑卡类
    • 绑定银行卡请求
      POST
    • 绑定银行卡查询
      POST
  • 会员管理开户类接口
    • 个人会员信息提交
      POST
    • 企业会员信息提交
      POST
    • 会员银行开户
      POST
    • 会员银行开户类查询
      POST
  • 银盛特定接口
    • 银盛-钱包证件照片补充
      POST
  1. 账户类接口

账户余额查询

测试中
POST
/account/account-query-balance

请求参数

Body 参数application/json
merchantsNo
integer 
商户号子账户号
必需
acctNo
string 
子账户号
必需
preSettleSearch
string 
待结算金额查询标识
可选
1为查询,其他不查询,默认不查询
示例
{
    "merchantsNo": 0,
    "acctNo": "string",
    "preSettleSearch": "string"
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/account/account-query-balance' \
--header 'Content-Type: application/json' \
--data-raw '{
    "merchantsNo": 0,
    "acctNo": "string",
    "preSettleSearch": "string"
}'

返回响应

🟢200成功
application/json
Body
status
object (状态返回参数) 
必需
statusCode
integer 
状态码
必需
systemCode
integer 
系统编号
必需
statusReason
string 
错误描述
必需
result
object 
必需
acctNo
string 
子账户号
必需
fundsHeld
integer 
冻结金额
必需
ledgerBal
integer 
可用余额
必需
availableBal
integer 
账户余额
必需
bankCode
string 
银行编码
必需
preSettleBal
integer 
待结算余额
可选
attachment
object (扩展信息返回参数) 
必需
traceId
string 
链路id
必需
timestamp
integer 
响应时间
必需
示例
{
    "status": {
        "statusCode": 0,
        "systemCode": -1,
        "statusReason": "服务器处理成功"
    },
    "result": {
        "acctNo": "NO2022040211484988547",
        "fundsHeld": 31000,
        "ledgerBal": 97044000,
        "availableBal": 97013000,
        "bankCode": "XM"
    },
    "attachment": {
        "traceId": "",
        "timestamp": 1652157743956
    }
}
🟢200全局响应对象
修改于 2024-04-24 01:53:31
上一页
交易明细查询
下一页
文件上传
Built with