Class: AccountPayment
- Defined in:
- lib/flutterwave_sdk/flutterwave_objects/account_payment.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#check_passed_parameters, #delete_request, #get_request, #initialize, #post_request, #put_request
Constructor Details
This class inherits a constructor from Base
Instance Method Details
#initiate_charge(data) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/flutterwave_sdk/flutterwave_objects/account_payment.rb', line 5 def initiate_charge(data) base_url = flutterwave_object.base_url # only update the payload with the transaction reference if it isn't already added to the payload if !data.key?("tx_ref") data.merge!({"tx_ref" => Util.transaction_reference_generator}) end # check the currency to determine the type and the required parameters currency = data["currency"] if currency == "NGN" required_parameters = [ "amount", "email", "account_bank", "account_number", "tx_ref", "currency"] type = "debit_ng_account" elsif currency == "GBP" required_parameters = [ "amount", "email", "account_bank", "account_number", "tx_ref", "currency"] type = "debit_uk_account" elsif currency == "USD" || currency == "ZAR" required_parameters = [ "amount", "email", "country", "tx_ref", "currency"] type = "ach_payment" else return "pass a valid currency" end check_passed_parameters(required_parameters, data) type = type payload = data.to_json response = post_request("#{base_url}#{BASE_ENDPOINTS::CHARGE_ENDPOINT}?type=#{type}", payload) return response end |
#validate_charge(flw_ref, otp) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/flutterwave_sdk/flutterwave_objects/account_payment.rb', line 35 def validate_charge(flw_ref, otp) base_url = flutterwave_object.base_url payload = { "otp" => otp, "flw_ref" => flw_ref } payload = payload.to_json response = post_request("#{base_url}/validate-charge", payload) return response end |
#verify_charge(id) ⇒ Object
49 50 51 52 53 54 |
# File 'lib/flutterwave_sdk/flutterwave_objects/account_payment.rb', line 49 def verify_charge(id) base_url = flutterwave_object.base_url response = get_request("#{base_url}/transactions/#{id}/verify") return response end |