Skip to content

根据申请单ID查询结果

从业机构可调用该接口查询特约商户结算规则ID修改的结果。

请求参数类型描述
application_idstring申请单编号
php
$instance->v3->merchantSettlement->merchantSettleRuleApplications->_application_id_->getAsync([
  'application_id' => '20000011111',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/merchant-settlement/merchant-settle-rule-applications/{application_id}')->getAsync([
  'application_id' => '20000011111',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/merchant-settlement/merchant-settle-rule-applications/{application_id}']->getAsync([
  'application_id' => '20000011111',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->merchantSettlement->merchantSettleRuleApplications->_application_id_->get([
  'application_id' => '20000011111',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/merchant-settlement/merchant-settle-rule-applications/{application_id}')->get([
  'application_id' => '20000011111',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/merchant-settlement/merchant-settle-rule-applications/{application_id}']->get([
  'application_id' => '20000011111',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
application_idstring申请单编号
application_process_infostring申请单处理信息
application_statestring申请单状态
update_timestring最后更新时间
acquiring_bank_idstring从业机构号
channel_idstring渠道商户号
sub_mchidstring从业机构特约商户号
settle_rule_idinteger结算规则id

参阅 官方文档

Published on the GitHub by TheNorthMemory