Skip to content

查询最大分账比例

可调用此接口查询特约商户设置的允许服务商分账的最大比例

请求参数类型描述
sub_mchidstring子商户号
php
$instance->v3->profitsharing->merchantConfigs->_sub_mchid_->getAsync([
  'sub_mchid' => '1900000109',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/profitsharing/merchant-configs/{sub_mchid}')->getAsync([
  'sub_mchid' => '1900000109',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/profitsharing/merchant-configs/{sub_mchid}']->getAsync([
  'sub_mchid' => '1900000109',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->profitsharing->merchantConfigs->_sub_mchid_->get([
  'sub_mchid' => '1900000109',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/profitsharing/merchant-configs/{sub_mchid}')->get([
  'sub_mchid' => '1900000109',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/profitsharing/merchant-configs/{sub_mchid}']->get([
  'sub_mchid' => '1900000109',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
sub_mchidstring子商户号
max_ratiointeger最大分账比例

参阅 官方文档

Published on the GitHub by TheNorthMemory