Skip to content

查询资料变更申请单状态-使用申请单号

使用申请单号查询申请单状态

请求参数类型描述
apply_idstring微信支付申请单号
php
$instance->v3->mchalterapply->mchsubjectalterapplyment->_apply_id_->getAsync([
  'apply_id' => '20220617143306000013906025001',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/mchalterapply/mchsubjectalterapplyment/{apply_id}')->getAsync([
  'apply_id' => '20220617143306000013906025001',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/mchalterapply/mchsubjectalterapplyment/{apply_id}']->getAsync([
  'apply_id' => '20220617143306000013906025001',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->mchalterapply->mchsubjectalterapplyment->_apply_id_->get([
  'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/mchalterapply/mchsubjectalterapplyment/{apply_id}')->get([
  'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/mchalterapply/mchsubjectalterapplyment/{apply_id}']->get([
  'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
merchant_codestring微信支付商户号
apply_idstring申请单号
out_request_nostring业务申请编号
statestring申请单状态
audit_reject_reasonstring总体驳回原因
audit_reject_detailobject[]驳回原因详情
param_namestring参数名称
reject_reasonstring驳回原因

参阅 官方文档

Published on the GitHub by TheNorthMemory