提交商户简称变更申请单
服务商使用该接口提交商家的商户简称变更申请,帮助商家修改商户简称。
请求参数 | 类型 | 描述 |
---|---|---|
json | object | 声明请求的JSON 数据结构 |
merchant_code | string | 商户号 |
out_request_no | string | 业务申请编号 |
merchant_shortname | string | 商户简称 |
php
$instance->v3->mchalterapply->merchantnamealterapplyment->postAsync([
'json' => [
'merchant_code' => '2492185251',
'out_request_no' => '1900013511_10000',
'merchant_shortname' => 'example_merchant_shortname',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/mchalterapply/merchantnamealterapplyment')->postAsync([
'json' => [
'merchant_code' => '2492185251',
'out_request_no' => '1900013511_10000',
'merchant_shortname' => 'example_merchant_shortname',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/mchalterapply/merchantnamealterapplyment']->postAsync([
'json' => [
'merchant_code' => '2492185251',
'out_request_no' => '1900013511_10000',
'merchant_shortname' => 'example_merchant_shortname',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->mchalterapply->merchantnamealterapplyment->post([
'json' => [
'merchant_code' => '2492185251',
'out_request_no' => '1900013511_10000',
'merchant_shortname' => 'example_merchant_shortname',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/mchalterapply/merchantnamealterapplyment')->post([
'json' => [
'merchant_code' => '2492185251',
'out_request_no' => '1900013511_10000',
'merchant_shortname' => 'example_merchant_shortname',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/mchalterapply/merchantnamealterapplyment']->post([
'json' => [
'merchant_code' => '2492185251',
'out_request_no' => '1900013511_10000',
'merchant_shortname' => 'example_merchant_shortname',
],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
apply_id | string | 申请单号 |
参阅 官方文档