Skip to content

修改联系信息

🚫

本接口服务已于 2020.04.13 (北京时间)下线,文档仅做留存参考。

请求参数类型描述
securitytrue声明加载商户API证书
xmlobject声明请求的XML数据结构
versionstring接口版本号
1.0 枚举值
mch_idstring商户号
sign_typestring签名类型
HMAC-SHA256 枚举值
sub_mch_idstring小微商户号
mobile_phonestring手机号
emailstring邮箱
merchant_namestring商户简称
cert_snstring加密的平台证书序列号
php
$instance->v2->applyment->micro->modifycontactinfo->postAsync([
  'security' => true,
  'xml' => [
    'version'       => '1.0',
    'mch_id'        => '1230000109',
    'sign_type'     => 'HMAC-SHA256',
    'sub_mch_id'    => '1230000109',
    'mobile_phone'  => '13734543456',
    'email'         => 'zhangsan@227.com',
    'merchant_name' => '张三的小店',
    'cert_sn'       => '50062CE505775F070CAB06E697F1BBD1AD4F4D87',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/applyment/micro/modifycontactinfo')->postAsync([
  'security' => true,
  'xml' => [
    'version'       => '1.0',
    'mch_id'        => '1230000109',
    'sign_type'     => 'HMAC-SHA256',
    'sub_mch_id'    => '1230000109',
    'mobile_phone'  => '13734543456',
    'email'         => 'zhangsan@227.com',
    'merchant_name' => '张三的小店',
    'cert_sn'       => '50062CE505775F070CAB06E697F1BBD1AD4F4D87',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/applyment/micro/modifycontactinfo']->postAsync([
  'security' => true,
  'xml' => [
    'version'       => '1.0',
    'mch_id'        => '1230000109',
    'sign_type'     => 'HMAC-SHA256',
    'sub_mch_id'    => '1230000109',
    'mobile_phone'  => '13734543456',
    'email'         => 'zhangsan@227.com',
    'merchant_name' => '张三的小店',
    'cert_sn'       => '50062CE505775F070CAB06E697F1BBD1AD4F4D87',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->applyment->micro->modifycontactinfo->post([
  'security' => true,
  'xml' => [
    'version'       => '1.0',
    'mch_id'        => '1230000109',
    'sign_type'     => 'HMAC-SHA256',
    'sub_mch_id'    => '1230000109',
    'mobile_phone'  => '13734543456',
    'email'         => 'zhangsan@227.com',
    'merchant_name' => '张三的小店',
    'cert_sn'       => '50062CE505775F070CAB06E697F1BBD1AD4F4D87',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/applyment/micro/modifycontactinfo')->post([
  'security' => true,
  'xml' => [
    'version'       => '1.0',
    'mch_id'        => '1230000109',
    'sign_type'     => 'HMAC-SHA256',
    'sub_mch_id'    => '1230000109',
    'mobile_phone'  => '13734543456',
    'email'         => 'zhangsan@227.com',
    'merchant_name' => '张三的小店',
    'cert_sn'       => '50062CE505775F070CAB06E697F1BBD1AD4F4D87',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/applyment/micro/modifycontactinfo']->post([
  'security' => true,
  'xml' => [
    'version'       => '1.0',
    'mch_id'        => '1230000109',
    'sign_type'     => 'HMAC-SHA256',
    'sub_mch_id'    => '1230000109',
    'mobile_phone'  => '13734543456',
    'email'         => 'zhangsan@227.com',
    'merchant_name' => '张三的小店',
    'cert_sn'       => '50062CE505775F070CAB06E697F1BBD1AD4F4D87',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典类型描述
return_codestring返回状态码
SUCCESS | FAIL 枚举值之一
return_msgstring返回信息
nonce_strstring随机字符串
signstring签名
result_codestring业务结果
SUCCESS | FAIL 枚举值之一
err_codestring错误代码
err_code_desstring错误代码描述
mch_idstring商户号
sub_mch_idstring小微商户号

参阅 官方文档

Published on the GitHub by TheNorthMemory