Module: Reapal::Api::Tender::RefundGuarantPaymentQuery
- Defined in:
- lib/reapal/api/tender/refund_guarant_payment_query.rb
Instance Method Summary collapse
-
#refund_guarant_payment_query(refund_flow_id) ⇒ Hash
3.17 借款人还代偿款查询.
Instance Method Details
#refund_guarant_payment_query(refund_flow_id) ⇒ Hash
3.17 借款人还代偿款查询
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/reapal/api/tender/refund_guarant_payment_query.rb', line 23 def refund_guarant_payment_query(refund_flow_id) service = 'reapal.trust.refundGuarantPaymentQuery' post_path = '/tender/rest.htm' params = { orderNo: refund_flow_id, queryTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } res = operate_post(:query, service, params, post_path, Http::ErrorCode.refund_guarant_payment_query, ['0000']) Reapal.logger.info res res end |