Skip to content

添加二级商户可扫码充值员工

收付通平台需通过调用此接口添加二级子商户的可扫码充值员工,添加成功后的用户即可进行微信支付扫码充值。

请求参数类型描述
jsonobject声明请求的JSON数据结构
sub_mchidstring二级商户号
sp_openidstring员工OpenID
php
$instance->v3->platsolution->ecommerce->rechargeEmployees->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'sp_openid' => 'oLTPCuCsfN3ABBz50VUZBNlHDbUU',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/platsolution/ecommerce/recharge-employees')->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'sp_openid' => 'oLTPCuCsfN3ABBz50VUZBNlHDbUU',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/platsolution/ecommerce/recharge-employees']->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'sp_openid' => 'oLTPCuCsfN3ABBz50VUZBNlHDbUU',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->platsolution->ecommerce->rechargeEmployees->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'sp_openid' => 'oLTPCuCsfN3ABBz50VUZBNlHDbUU',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/platsolution/ecommerce/recharge-employees')->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'sp_openid' => 'oLTPCuCsfN3ABBz50VUZBNlHDbUU',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/platsolution/ecommerce/recharge-employees']->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'sp_openid' => 'oLTPCuCsfN3ABBz50VUZBNlHDbUU',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
sub_mchidstring二级商户号
sp_openidstring员工OpenID
statestring员工状态
EFFECTIVE 枚举值
create_timestring添加员工时间
update_timestring最后更新时间

参阅 官方文档

Published on the GitHub by TheNorthMemory