Sha256: d14b9763454061887cf5de4cc414537868026f9ddf2f389b66d231a59dff9764
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
# coding: utf-8 module Reapal module Api module User module UndoBindBankCard # 1.13 撤销绑卡 (API) # # @param flow_id [ String ] 订单号 # @param contracts [ String ] 用户协议号 # @param bank_account_no [ String ] 银行卡信息(卡号后四位) # # @return [ Hash ] 结果集 # * :result [String] 业务结果:'S/F/P' # * :request_params [Hash] 请求参数 # * :response [Object] 请求返回对象 # * :error_code [String] 错误代号 # * :error_msg [String] 错误信息 # * :data: 具体业务返回信息 # * :orderNo [String] 订单号 # * :resultCode [String] 结果代码 0000:撤销绑卡成功 # def undo_bind_bank_card(flow_id, contracts, bank_account_no) service = 'reapal.trust.undoBindBankCard' post_path = '/reagw/bankcard/undoBindBankApi.htm' params = { orderNo: flow_id, contracts: contracts, bankAccountNo: bank_account_no, applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } res = operate_post(:operate, service, params, post_path, Http::ErrorCode.bind_card, ['0000']) Reapal.logger.info res res end end # module end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reapal-0.9.13 | lib/reapal/api/user/undo_bind_bank_card.rb |