Skip to content

保险商户通过商户协议号解除保险自动续费协议

通过商户协议号解约协议, 商户可以通过该接口发起签约协议的解约。 前置条件 对应的签约协议是已生效状态的签约协议。

请求参数类型描述
plan_idnumber委托代扣模板ID
out_contract_codestring商户签约协议号
jsonobject声明请求的JSON数据结构
contract_termination_remarkstring解约备注
php
$instance->v3->papay->insuranceSign->contracts->planId->_plan_id_->outContractCode->_out_contract_code_->terminate->postAsync([
  'plan_id' => '12535',
  'out_contract_code' => 'wxwtdk20200910100000',
  'json' => [
    'contract_termination_remark' => '用户解约',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/papay/insurance-sign/contracts/plan-id/{plan_id}/out-contract-code/{out_contract_code}/terminate')->postAsync([
  'plan_id' => '12535',
  'out_contract_code' => 'wxwtdk20200910100000',
  'json' => [
    'contract_termination_remark' => '用户解约',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/papay/insurance-sign/contracts/plan-id/{plan_id}/out-contract-code/{out_contract_code}/terminate']->postAsync([
  'plan_id' => '12535',
  'out_contract_code' => 'wxwtdk20200910100000',
  'json' => [
    'contract_termination_remark' => '用户解约',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->papay->insuranceSign->contracts->planId->_plan_id_->outContractCode->_out_contract_code_->terminate->post([
  'plan_id' => '12535',
  'out_contract_code' => 'wxwtdk20200910100000',
  'json' => [
    'contract_termination_remark' => '用户解约',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/papay/insurance-sign/contracts/plan-id/{plan_id}/out-contract-code/{out_contract_code}/terminate')->post([
  'plan_id' => '12535',
  'out_contract_code' => 'wxwtdk20200910100000',
  'json' => [
    'contract_termination_remark' => '用户解约',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/papay/insurance-sign/contracts/plan-id/{plan_id}/out-contract-code/{out_contract_code}/terminate']->post([
  'plan_id' => '12535',
  'out_contract_code' => 'wxwtdk20200910100000',
  'json' => [
    'contract_termination_remark' => '用户解约',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
mchidstring商户号
contract_idstring委托代扣协议ID
appidstring商户AppID
plan_idnumber委托代扣模板ID
out_contract_codestring商户签约协议号
insured_display_namestring被保人姓名
contract_statestring委托代扣协议状态
contract_signed_timestring协议签署时间
contract_expired_timestring协议到期时间
contract_terminate_infoobject协议解约信息
contract_termination_modestring协议解约方式
contract_terminated_timestring协议解约时间
contract_termination_remarkstring解约备注
openidstring用户OpenID
out_user_codestring商户侧用户标识

参阅 官方文档

Published on the GitHub by TheNorthMemory