布伦特里市场 - 如果主商人在做销售时及时充电客户端会发生什么,但支付给submerchant(Br

2019-10-22 01:30发布

我曾经在一个项目中实现PHP布伦特里API,我想用市场的API相同。

现在,我们有促销活动,我们不收取客户端,但我们必须支付的金额,以谁已交付货物子商人。

所以,下面是代码加服务费,这是明显的,在我们必须添加子商户ID为merchantAccountId销售的时间,金额将支付从客户收取,什么是paymentMethodNonce?

$result = Braintree_Transaction::sale(array(
  'merchantAccountId' => 'provider_sub_merchant_account',
  'amount' => '10.00',
  'paymentMethodNonce' => 'nonce-from-the-client',
  'serviceFeeAmount' => "1.00"
));

另一个查询是,在我们必须通过客户的信用卡详细信息出售时? 如果客户端已经在跳马? 下面是从布伦特里文档另一个代码的信用卡详细信息

$result = Braintree_Transaction::sale(
  array(
    'amount' => "100",
    'merchantAccountId' => "blue_ladders_store",
    'creditCard' => array(
      'number' => "4111111111111111",
      'expirationDate' => "12/20",
    ),
    'options' => array(
      'submitForSettlement' => true,
      'holdInEscrow' => true,
    ),
    'serviceFeeAmount' => "10.00"
  )
);

如果我们不加的信用卡号码和要付出的子随后商家怎么可能做到。

谢谢

文章来源: Braintree marketplace - What happens if Master Merchant do charge client at time time of sale, but has to pay to submerchant
标签: php braintree