撤销商户简称变更申请单 
当申请单状态为编辑中/审核中/已驳回时,才支持撤销
| 请求参数 | 类型 | 描述 | 
|---|---|---|
| apply_id | string | 微信支付申请单号 | 
php
$instance->v3->mchalterapply->merchantnamealterapplyment->_apply_id_->revoke->postAsync([
  '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/merchantnamealterapplyment/{apply_id}/revoke')->postAsync([
  'apply_id' => '20220617143306000013906025001',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance['v3/mchalterapply/merchantnamealterapplyment/{apply_id}/revoke']->postAsync([
  '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->merchantnamealterapplyment->_apply_id_->revoke->post([
  'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance->chain('v3/mchalterapply/merchantnamealterapplyment/{apply_id}/revoke')->post([
  'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance['v3/mchalterapply/merchantnamealterapplyment/{apply_id}/revoke']->post([
  'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));| 返回字典 | 类型 | 描述 | 
|---|---|---|
| apply_id | string | 申请单号 | 
| state | string | 申请单状态APPLYMENT_STATE_CANCELED 枚举值 | 
参阅 官方文档