1. 认证
  • 对接指引
  • 异步回调
  • AWS S3 文件上传
  • 认证
    • 获取令牌
      POST
  • 商户
    • 创建商户
      POST
    • 更新商户
      POST
    • 商户详情
      POST
  • 卡钱包
    • 开通卡钱包
      POST
    • 创建充值订单
      POST
    • 创建提现订单
      POST
    • 修改卡钱包状态
      POST
    • 查询卡钱包信息
      POST
    • 查询卡钱包流水
      POST
    • 获取可用的卡BIN码列表
      POST
    • 获取充值方式/收款账号
      POST
  • 卡片
    • 开卡申请
      POST
    • 卡片提额
      POST
    • 卡片降额
      POST
    • 查询卡片详细信息
      POST
    • 查询卡片手续费订单记录
      POST
    • 查询卡片支付订单详情
      POST
    • 分页查询卡片支付订单记录
      POST
  • 持卡人
    • 创建持卡人
      POST
  • 签名验签工具
    • 生成秘钥对
      POST
    • 1.客户端签名
      POST
    • 2.服务端验签
      POST
    • 3.服务端签名
      POST
    • 4.客户端验签
      POST
  • 异步回调
    • 卡片
      • 卡片授权订单相关
      • 卡片撤销、冻结,解冻
    • 卡钱包
      • 卡钱包审核回调
      • 卡钱包充值回调
      • 卡钱包提现回调
    • 商户
      • 商户账户审核回调
  • 数据模型
    • RestResultSerializable
    • RestResultVoid
    • WalletApplyOpenApiVo
    • ApiWalletRechargeOrderVo
    • RestResultString
    • ApiSaveCardHolderVo
    • VcCardFeeOrderVo
    • VcCardPayOrderVo
    • VcCardPayOrderDto
    • ApiCardApplyVo
    • ApiCardBinVo
    • RechargeMethodVo
    • MerchantCompanyDto
    • WalletStatusUpdateDto
    • RestResultWalletApplyOpenApiVo
    • RestResultApiWalletRechargeOrderVo
    • ApiWalletWithdrawOrderDto
    • RestResultApiSaveCardHolderVo
    • PagingVcCardFeeOrderVo
    • PagingVcCardPayOrderVo
    • RestResultVcCardPayOrderDto
    • RestResultApiCardApplyVo
    • ApiCardIncreaseQuotaDto
    • ApiCardDecreaseQuotaDto
    • RestResultListApiCardBinVo
    • PayeeAccountVo
    • MerchantCompanyShareholderInfoDto
    • OpenWalletInfoVo
    • ApiSaveWalletApplyDto
    • ApiWalletRechargeOrderDto
    • ApiSaveCardHolderDto
    • RestResultPagingVcCardFeeOrderVo
    • RestResultPagingVcCardPayOrderVo
    • ApiCardPayOrderInfoDto
    • ApiCardApplyDto
    • ApiCardInfoDto
    • WalletRechargeInfoVo
    • MerchantLegalInfoDto
    • RestResultOpenWalletInfoVo
    • ApiCardFeeOrderDto
    • ApiCardPayOrderQueryDto
    • RestResultWalletRechargeInfoVo
    • MerchantPersonDto
    • OpenWalletInfoQueryDto
    • BasePageRequestApiCardFeeOrderDto
    • BasePageRequestApiCardPayOrderQueryDto
    • WalletRechargeInfoRequest
    • MerchantUpdateDto
    • PageInfo
    • MerchantDetailVo
    • FlowItem
    • RestResultMerchantDetailVo
    • OpenWalletFlowVo
    • MerchantDetailDto
    • RestResultOpenWalletFlowVo
    • MerchantCreateDto
    • PageInfo
    • OpenWalletFlowQueryDto
  1. 认证

获取令牌

POST
/api/open/auth/token
调用获取令牌接口获取access_token

请求参数

Query 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/open/auth/token?grant_type=client_credentials&client_id=2017197466836283393&client_secret=xwwEqiHT54ND7psDVIUgAXeqBfN9o4IcOXdq-wzHFPY'

返回响应

🟢200成功
application/json
Body

示例
{
    "success": true,
    "code": "200",
    "message": "操作成功",
    "data": {
        "access_token": "jVkLy9f8/vLAjeLu2tkkcbiPxQFLXPlMTmgKb+QxWDrmXwoDwWq/sHUvbUvtZX/ADod8AHnIoHBZQxzWlD020ZsviDlR4MTOf0IEmuIcd53kmwrjv5bQIGWw6VTppk+n",
        "token_type": "bearer",
        "expires_in": 60,
        "scope": "default"
    }
}
修改于 2026-02-04 06:19:05
上一页
AWS S3 文件上传
下一页
创建商户
Built with