Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 729 Bytes

Withdraw.md

File metadata and controls

19 lines (17 loc) · 729 Bytes

Use Cashout/withdraw money feature !

  • You can withdraw/cashout money to your card account/bank account.
  • Make sure the user is signed in with password to be able to withdraw the money.
  • ```java String amount = "10"; String accontNo = "12345678901"; String accountHolderName = "FirstName LastName; String ifsc = "BANK0000123"; ``` ```java CashoutInfo cashoutInfo = new CashoutInfo(new Amount(amount), accontNo, accountHolderName, ifsc); citrusClient.cashout(cashoutInfo, new Callback() { @Override public void success(PaymentResponse paymentResponse) { }
        @Override
        public void error(CitrusError error) {}
    });