6.接收通知
<h3>1.基本信息</h3>
<ul>
<li>接口说明:本接口由接入方实现,用于接收批次终态通知,并对我方正确响应</li>
<li>地址:使用【4.提交下发批次的请求参数处callback】</li>
<li>请求方法:POST</li>
</ul>
<h3>2. 业务请求参数</h3>
<table>
<thead>
<tr>
<th>参数名</th>
<th>是否必需</th>
<th>类型</th>
<th>说明</th>
<th>示例</th>
</tr>
</thead>
<tbody>
<tr>
<td>businessType</td>
<td>是</td>
<td>string</td>
<td>业务场景枚举</td>
<td>BATCH_PAY_RESULT_NOTIFY</td>
</tr>
<tr>
<td>t</td>
<td>是</td>
<td>string</td>
<td>对应业务场景的通知数据</td>
<td>见下</td>
</tr>
</tbody>
</table>
<h4>业务场景枚举</h4>
<table>
<thead>
<tr>
<th>业务场景枚举</th>
<th>说明</th>
<th>通知数据示例</th>
</tr>
</thead>
<tbody>
<tr>
<td>BATCH_APPROVE_FAIL_NOTIFY</td>
<td>受理审批失败结果回调</td>
<td>见下</td>
</tr>
<tr>
<td>BATCH_PAY_RESULT_NOTIFY</td>
<td>批次支付结果回调</td>
<td>见下</td>
</tr>
</tbody>
</table>
<pre><code>{ //批次支付结果回调
&quot;batchUuid&quot;: &quot;b3b82f3b-c59d-ab75-d405-294e2bc8a7e3&quot;,
&quot;batchStatus&quot;: 8,
&quot;settleOrderPayResultDTOList&quot;: [{
&quot;orderUuid&quot;: &quot;5e9ead8b-50d7-3fb6-f8ec-fd367ad9146e&quot;,
&quot;orderStatus&quot;: 5,
&quot;failReason&quot;: null
}]
}
//受理审批失败结果回调
{
&quot;batchUuid&quot;: &quot;b3b82f3b-c59d-ab75-d405-294e2bc8a7e3&quot;
}</code></pre>
<h3>3. 业务响应数据</h3>
<ul>
<li>接入方接收到请求数据后应对我方响应“SUCCESS”,不含引号。</li>
</ul>
<h3>4. 注意事项</h3>