0

如何通过平衡支付 API 从我的市场托管账户向我自己的银行账户发起贷记?

我应该通过仪表板创建一个代表我的网站的客户,将我的银行帐户附加到该客户,然后发送信用吗?有没有更容易通过 API 做到这一点?

4

1 回答 1

3

每个市场都应该有一个代表市场所有者的 owner_customer 对象。您需要将银行帐户添加到此对象,然后允许您发放简单的信用。

我不确定您使用的是什么客户端库,但在 balance-ruby 中,这看起来像:

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。

于 2013-09-03T17:11:34.733 回答