BSB (in/out)

Transfer via BSB (6 digits) and account number (6-16 digits) (BSB).


CountryAustralia
CurrencyAUD (Australian Dollar)
Method typebsb
DirectionPay-in/Payout
Integration typeWidget/H2H
Transfer typeTransfer via BSB (6 digits) and account number (6-16 digits) (BSB)
Account number format6-16 digits account number
Limits****

Create Pay-in (API request) Integration type: Widget/H2H HTTP Method: POST Endpoint: /deals/payin

{
  "amount": 60,                                // Payment amount
  "currency": "AUD",                           // Currency
  "invoiceId": "invoiceID",                    // Unique invoice identifier on the merchant side
  "clientId": "clientID",                      // Unique client identifier on the merchant side
  "type": "bsb",                               // Method type
  "successUrl": "https://example.com/success", // Optional (widget): URL for redirect on successful payment
  "failUrl": "https://example.com/fail",       // Optional (widget): URL for redirect on failed payment
  "backUrl": "https://example.com/back",       // Optional (widget): URL for return without completing payment
  "lang": "EN"                                 // Optional (widget): localization EN
}

Create Payout (API request) Integration type: H2H HTTP Method: POST Endpoint: /deals/payout

{
  "amount": 60,                                 // Payout amount
  "currencyTo": "AUD",                          // Currency
  "invoiceId": "invoiceID",                     // Unique invoice identifier on the merchant side
  "clientId": "clientID",                       // Unique client identifier on the merchant side
  "type": "bsb",                                // Method type
  "baseCurrency": "fiat",                       // Base currency type (fiat, crypto)
  "feesStrategy": "add",                        // Fees handling strategy (add, sub)
  "recipient": {                                // Recipient information
    "account_number": "1234567890123456",       // Mobile number linked to recipient's account
    "additional_account_number": "123456",      // Additional number linked to recipient's account
    "account_owner": "Account Holder",          // Recipient's full name (account holder)
    "type": "custom"                            // Recipient account type
  }
}