PayIn vs PayOut

The endpoint to create a quote also receives partially optional values for the pay_in and pay_out fields. You must pass one or the other depending on whether your destination is an internal Busha-managed balance, or an external account. This could be crypto, bank account, or mobile money.

PayInCopied!

pay_in represents the source of external payment for a deposit transfer into a Busha Balance. An example of a pay_in object to specify a payment from your BTC wallet for a deposit transaction:

"pay_in": {
    "type": "address",
    "address": "tb1qj4263506wyu8khrz2dwce0agk8lhyjgy269rxr",
    "network": "BTC"
 }

PayOutCopied!

pay_out represents a withdrawal into an external payment account. This account can be a crypto address, mobile money, or bank account.

For non-crypto pay_out, you must have stored the account information as a recipient. See the Guides on Recipients for more information.
An example of pay_out with a recipient saved on Busha ( type can also be mobile_money):

"pay_out": {
    "type": "bank_transfer",
    "recipient_id": "64ae8c26ea1033204c805a8a",
    "profile_id": "BUS_81032jnsmodnmoi"
}

An example of pay_out to a crypto address:

"pay_out": {
    "type": "address",
    "network": "BTC",
    "address": "tb1qj4263506wyu8khrz2dwce0agk8lhyjgy269rxr"
}