Module: RockFintech::Api::Batch::BatchNotifyResendB

Defined in:
lib/rock_fintech/api/batch/batch_notify_resend_b.rb

Instance Method Summary collapse

Instance Method Details

#batch_notify_resend_b(req_sequence_id, remark = '') ⇒ Hash

批处理回调重发接口

Returns:

  • (Hash)

    结果集

    • :result [String] “S”/“F”/“P”

    • :request_params [Hash] 请求参数

    • :response [Object] 请求返回对象

    • :code [String] 结果代码

    • :msg [String] 结果信息

    • :data: 具体业务返回信息



17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/rock_fintech/api/batch/batch_notify_resend_b.rb', line 17

def batch_notify_resend_b(req_sequence_id, remark='')
  service = 'batch_notify_resend_b'

  params = {
    req_sequence_id: req_sequence_id,
    custom: remark,
  }

  res = operate_post(:operate, service, params, Http::ErrorCode.batch_notify_resend_b, ['RD000000'])

  res
end