Skip to content

修改联系信息

请求参数类型描述
xmlobject声明请求的XML数据结构
versionstring接口版本号
mch_idstring商户号
sign_typestring签名类型
sub_mch_idstring小微商户号
mobile_phonestring手机号
emailstring邮箱
merchant_namestring商户简称
cert_snstring加密的平台证书序列号
securityboolean声明加载商户API证书
固定值true
php
$instance->v2->applyment->micro->modifycontactinfo->postAsync([
  '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',
  ],
  'security' => true,
])
->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([
  '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',
  ],
  'security' => true,
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/applyment/micro/modifycontactinfo']->postAsync([
  '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',
  ],
  'security' => true,
])
->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([
  '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',
  ],
  'security' => true,
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/applyment/micro/modifycontactinfo')->post([
  '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',
  ],
  'security' => true,
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/applyment/micro/modifycontactinfo']->post([
  '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',
  ],
  'security' => true,
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典类型描述
return_codestring返回状态码
return_msgstring返回信息
nonce_strstring随机字符串
signstring签名
result_codestring业务结果
err_codestring错误代码
err_code_desstring错误代码描述
mch_idstring商户号
sub_mch_idstring小微商户号

参阅 官方文档

Published on the GitHub by TheNorthMemory