1. Payee
OPEN-API
  • API Call Description
  • Constant Declaration
    • Wallet
      • Wallet Status
      • In Out Type
      • Transaction Type
      • Transaction Status
    • Bin
      • Bin Type
      • Bin Mode
      • Bin Status
    • Card
      • Card Status
      • Card Trade
        • Card Trade Type
        • Card Trade Result
    • Order
      • Card Type
      • Order Type
      • Order Status
      • Order Bill
        • Order Bill Type
        • In Out Type
        • Bill Category
    • Payee
      • Payee Status
    • Payment
      • Fee Mode
      • Payment Status
  • Webhook
    • Card Notify
      • Order
      • Card
      • Card Trade
    • Payee Notify
    • Payment Notify
    • Wallet Notify
  • Api
    • Wallet
      • 钱包列表
      • 钱包详情
      • 交易流水列表
      • 交易详情
      • 获取兑换汇率
    • Card
      • Bin
        • 卡Bin列表
        • 卡Bin详情
        • 卡Bin费用
        • 卡Bin限制
      • Card
        • 卡列表
        • 卡详情
        • 卡激活
        • 卡冻结
        • 卡解冻
        • 发起销卡
        • 卡交易列表
        • 商户交易评分
      • Order
        • 开卡
        • 卡充值
        • 订单列表
        • 订单详情
      • Holder
        • 持卡人列表
        • 创建持卡人
        • 编辑持卡人
        • 持卡人详情
        • 删除持卡人
    • PayMethod
      • 付款方式
    • Payee
      • 运营资金来源列表
        POST
      • 预期付款目的列表
        POST
      • 创建收款方
        POST
      • 编辑收款方
        POST
      • 申请收款方
        POST
      • 删除收款方
        POST
      • 收款方列表
        POST
      • 收款方详情
        POST
    • Payment
      • 付款原因
      • 创建付款
      • 付款列表
      • 付款详情
  1. Payee

运营资金来源列表

POST
/{{version}}/openApi/payee/workingCapital

使用场景#

 创建收款方,需要填写的运营资金来源列表。
请求参数#
Http Post Application/json
字段类型是否必传描述
customer_idlong是客户id
app_idlong是应用id
keystring是授权key
示例
{
    "customer_id":10001001,
    "app_id": 100005,
    "key": "cce57ad3869b4f95804f267fadda99ac"
}
响应内容#
字段类型是否必传描述
totalint是总数
page_noint是当前页码
page_sizeint是当前每页记录数
working_capital_listarray[object]是运营资金来源数组
working_capital_list.codeint是编号
working_capital_list.namestring是来源名称
working_capital_list.name_enstring是来源英文名称
示例
{
    "code": 0,
    "message": "success",
    "data": {
        "working_capital_list": [
            {
                "code": 1,
                "name": "UBO (最终受益人) 资本投资",
                "name_en": "UBO (Ultimate Beneficial Owner) Capital Investment"
            },
            {
                "code": 2,
                "name": "经营多年的业务收益 / 贷款收入",
                "name_en": "Income from business operations / loan interests"
            },
            {
                "code": 3,
                "name": "公司向银行贷款",
                "name_en": "Bank loans"
            },
            {
                "code": 4,
                "name": "UBO 继承遗产 / 家庭信托基金",
                "name_en": "UBO Inheritance / Family Trust"
            },
            {
                "code": 5,
                "name": "家庭礼物或非股东礼物",
                "name_en": "Family gifts or non-shareholder gifts"
            },
            {
                "code": 6,
                "name": "保险收益 / 到期结算",
                "name_en": "Insurance proceeds / Settlement at maturity"
            },
            {
                "code": 7,
                "name": "法律案件的赔偿金",
                "name_en": "Compensation for legal cases"
            },
            {
                "code": 8,
                "name": "买卖股票投资收益 / 回报",
                "name_en": "Gain / return on investment in trading stocks"
            },
            {
                "code": 9,
                "name": "奖金(政府或收据式彩票)",
                "name_en": "Prize money (government or receipt-based lottery)"
            },
            {
                "code": 10,
                "name": "赌博或 奖金(非收据式彩票)",
                "name_en": "Gambling or prize money (non-receipt based lottery)"
            },
            {
                "code": 11,
                "name": "出售公司或公司股票的收益",
                "name_en": "Proceeds from the sale of companies or shares in companies"
            },
            {
                "code": 12,
                "name": "商业或住宅物业的销售",
                "name_en": "Sale of commercial or residential property"
            },
            {
                "code": 13,
                "name": "出售公司投资收益",
                "name_en": "Proceeds from the sale of the Company's investment holdings"
            }
        ]
    }
}

请求参数

Body 参数application/json

示例
{
    "customer_id": 10001004,
    "app_id": 100006,
    "key": "0408ab79eb214e7d81d9fd447b5916a2"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'http://prod-cn.your-api-server.com/{{version}}/openApi/payee/workingCapital' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customer_id": 10001004,
    "app_id": 100006,
    "key": "0408ab79eb214e7d81d9fd447b5916a2"
}'

返回响应

🟢200成功
application/json
Body

示例
{}
修改于 2026-03-19 06:16:48
上一页
付款方式
下一页
预期付款目的列表
Built with