Skip to content

提交回复

商户可通过调用此接口,提交回复内容。其中上传图片凭证需首先调用商户上传反馈图片接口,得到图片id,再将id填入请求。

请求参数类型描述
base_uristring声明接入点https://apihk.mch.weixin.qq.com/(香港接入)
complaint_idstring投诉单号
jsonobject声明请求的JSON数据结构
complainted_mchidstring被诉商户号
response_contentstring回复内容
response_imagesstring[]回复图片
jump_urlstring跳转链接
jump_url_textstring跳转链接文案
php
$instance->v3->global->merchantService->complaints->_complaint_id_->response->postAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'complaint_id' => '200201820200101080076610000',
  'json' => [
    'complainted_mchid' => '1900012181',
    'response_content'  => '已与用户沟通解决',
    'response_images'   => ['file23578_21798531.jpg'],
    'jump_url'          => 'https://www.xxx.com/notify',
    'jump_url_text'     => '查看订单详情',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$instance->chain('v3/global/merchant-service/complaints/{complaint_id}/response')->postAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'complaint_id' => '200201820200101080076610000',
  'json' => [
    'complainted_mchid' => '1900012181',
    'response_content'  => '已与用户沟通解决',
    'response_images'   => ['file23578_21798531.jpg'],
    'jump_url'          => 'https://www.xxx.com/notify',
    'jump_url_text'     => '查看订单详情',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$instance['v3/global/merchant-service/complaints/{complaint_id}/response']->postAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'complaint_id' => '200201820200101080076610000',
  'json' => [
    'complainted_mchid' => '1900012181',
    'response_content'  => '已与用户沟通解决',
    'response_images'   => ['file23578_21798531.jpg'],
    'jump_url'          => 'https://www.xxx.com/notify',
    'jump_url_text'     => '查看订单详情',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$response = $instance->v3->global->merchantService->complaints->_complaint_id_->response->post([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'complaint_id' => '200201820200101080076610000',
  'json' => [
    'complainted_mchid' => '1900012181',
    'response_content'  => '已与用户沟通解决',
    'response_images'   => ['file23578_21798531.jpg'],
    'jump_url'          => 'https://www.xxx.com/notify',
    'jump_url_text'     => '查看订单详情',
  ],
]);
print_r($response->getStatusCode() === 204);
php
$response = $instance->chain('v3/global/merchant-service/complaints/{complaint_id}/response')->post([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'complaint_id' => '200201820200101080076610000',
  'json' => [
    'complainted_mchid' => '1900012181',
    'response_content'  => '已与用户沟通解决',
    'response_images'   => ['file23578_21798531.jpg'],
    'jump_url'          => 'https://www.xxx.com/notify',
    'jump_url_text'     => '查看订单详情',
  ],
]);
print_r($response->getStatusCode() === 204);
php
$response = $instance['v3/global/merchant-service/complaints/{complaint_id}/response']->post([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'complaint_id' => '200201820200101080076610000',
  'json' => [
    'complainted_mchid' => '1900012181',
    'response_content'  => '已与用户沟通解决',
    'response_images'   => ['file23578_21798531.jpg'],
    'jump_url'          => 'https://www.xxx.com/notify',
    'jump_url_text'     => '查看订单详情',
  ],
]);
print_r($response->getStatusCode() === 204);
返回字典类型描述
空字符串(无返回内容)

Published on the GitHub by TheNorthMemory