Module: Reapal::Api::Money::WithdrawQuery
- Defined in:
- lib/reapal/api/money/withdraw_query.rb
Instance Method Summary collapse
-
#withdraw_query(withdraw_flow_id) ⇒ Hash
2.5 提现查询(API).
Instance Method Details
#withdraw_query(withdraw_flow_id) ⇒ Hash
2.5 提现查询(API)
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/reapal/api/money/withdraw_query.rb', line 26 def withdraw_query(withdraw_flow_id) service = 'reapal.trust.withdrawQuery' post_path = '/service/depwit.htm' params = { orderNo: withdraw_flow_id, queryTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } res = operate_post(:query, service, params, post_path, Http::ErrorCode.withdraw_query, ['0002']) if 'P' == res[:result] && '0003' == res[:data][:resultCode] res[:result] = 'F' end Reapal.logger.info res res end |