如何通过平衡付款API从我的市场托管账户向我自己的银行账户发放信用卡?
我是否应该通过信息中心创建代表我网站的客户,将我的银行帐户附加到该客户,然后发送信用卡?通过API更容易做到这一点吗?
答案 0 :(得分:3)
每个市场都应该有一个owner_customer对象,代表市场所有者。您需要将银行帐户添加到此对象,然后才能发放简单信用。
我不确定您使用的是哪个客户端库,但在均衡红宝石中,这看起来像是:
marketplace.owner_customer.add_bank_account(bank_account.uri)
marketplace.in_escrow
=> 32065655
marketplace.owner_customer.credit(
:amount => 100000,
:description => "Collect revenue",
:destination_uri => bank_account.uri # without destination_uri, defaults to most recent bank account
)
marketplace.reload
marketplace.in_escrow
=> 31965655
您还可以通过信息中心设置添加银行帐户,并在信用卡中将该银行帐户URI用作destination_uri。