- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
从Stripe文档中:
When you cancel the subscription, the customer's card will not be charged again, but no money will be refunded either. If you'd like to issue a refund, you can do so through Stripe's dashboard or via the API.
最佳答案
Stripe现在将处理此问题。它可以立即取消订阅并创建发票,将月内未使用的费用退还给他们。
https://stripe.com/docs/api/subscriptions/cancel
添加“比例”标签以退还剩余的每月费用。
在PHP中:
$subscription = \Stripe\Subscription::retrieve(
'SUBSCRIPTION_ID'
);
$subscription->delete([
'prorate' => true
]);
// get active subscription
$subscription = \Stripe\Subscription::retrieve(' SUBSCRIPTION_ID ');
// sample prorated invoice for a subscription with quantity of 0
$sample_subscription_item = array(
"id" => $subscription->items->data[0]->id,
"plan" => $subscription->items->data[0]->plan->id,
"quantity" => 0,
);
$upcoming_prorated_invoice = \Stripe\Invoice::upcoming([
"customer" => $subscription->customer,
"subscription" => $subscription->id,
"subscription_items" => array($sample_subscription_item),
"subscription_proration_date" => ' PRORATED_DATE ', // optional
]);
// find prorated amount
$prorated_amount = 0;
foreach($upcoming_prorated_invoice->lines->data as $invoice) {
if ($invoice->type == "invoiceitem") {
$prorated_amount = ($invoice->amount < 0) ? abs($invoice->amount) : 0;
break;
}
}
// find charge id on the active subscription's last invoice
$latest_invoice = \Stripe\Invoice::retrieve($subscription->latest_invoice);
$latest_charge_id = $latest_invoice->charge;
// refund amount from last invoice charge
if ($prorated_amount > 0) {
$refund = \Stripe\Refund::create([
'charge' => $latest_charge_id,
'amount' => $prorated_amount,
]);
}
// delete subscription
$subscription->delete();
关于payment-gateway - 订阅取消后,Stripe API退款,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24790776/
我被这个 Java 家庭作业问题困扰: Write a new method, Refund, that simulates the refunding of any remaining credit
我用paypal express完成支付后,我的数据库更新失败了,我该怎么办? 代码如下: $transaction = $this->initPayPalExpress()->complet
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve th
微信小程序或微信支付相关操作支付退款订单查询退款查询支付成功,进行回调退款成功 进行回调用到的方法 支付 ?
我快速浏览了与 Bluesnap webhooks 相关的 IPN 类型和参数 - https://support.bluesnap.com/v2.2.7/docs/ipn-parameter-ref
我正在尝试在测试模式下进行退款 (pilot-payflowpro.paypal.com)(我的货币是英镑,仅供引用) 据我从文档中看到的,我正在正确使用所有内容:https://www.x.com/
我正在尝试用 bash 编写部分退款 Paypal 交易的代码。这是我正在关注的指南 https://developer.paypal.com/docs/classic/api/adaptive-pa
我雇了一个人给我编写了一些代码来取消 Paypal 的 API 中的定期付款,如下所示: function change_subscription_status( $profile_id, $acti
) 我正在尝试在我的应用中实现应用内结算。在 Google Play 开发者控制台中,我声明了一个托管项目。购买此商品效果非常好。但是现在,当我在谷歌钱包商家中心退款或取消购买时,我的应用程序需要很长
我们希望在将 google play 购买退还给用户时进行存储以进行数据分析。 根据文档,用户可以通过 3 种方式申请 Google Play 订阅退款: https://support.google
我用的是paypal native sdk,这里没有退款支付的概念。为此,我们需要 REST API 吗?如果我们使用 REST API,那么我们需要获取事务 ID。我们怎样才能做到这一点? 谢谢,非
我可以使用 RoR 中的 ActiveMerchant 成功地直接向 PaPpal 付款。 如何退款到交易? 最佳答案 汇款将涉及额外的 PayPal 费用。我建议使用 ActiveMerchant
我正在使用 Paypal 的 android sdk V2 开发一个与 Paypal 集成的 android 应用程序。我已成功完成付款交易。但我不知道如何取消交易并使用 Paypal sdk V2
在 Paypal 文档迷宫中,我一直很紧张。我的问题很简单。 是否可以通过具有网络支付标准的 API 调用发起退款? 我知道您可以使用专业版,因为我发现这里散布着各种文档。我还找到了This bit
我正在开发一个集成到 PayPal 的 REST API 中的 PHP 应用程序。我已正确处理事务并将事务 ID 保存到 MySQL 数据库中。我现在正尝试退款,但无法让它停止给出“传入的 JSON
我正在使用 Paypal NVP Refund Api 进行退款 Paypal 交易。一切正常,但当我尝试调用 api 时,它给出了以下响应。 Array ( [TIMESTAMP] => 2
情况: - 用户进行 IAP 并获得一些内容,我们存储用户的设备 ID 以确保他们可以随时访问此内容。 - 用户认为他们不喜欢这些内容,因此他们调用 Apple 并获得退款。 - 用户仍然可以访问
我目前正在研究为 PayPal 退还 web_accept 类型付款的可能性。 我们在我们的网站上接受付款,我想自动退款交易。例如: 我有一个 web_accept 付款:Web Accept Pay
我正在尝试使用 ActiveMerchant gem 进行退款。看完API ,我使用这样的退款方法: response = PaymentGateway.refund(nil,transaction_
我在我的网站上启用了 paypal 自适应支付。当客户从第三方卖家购买任何产品时,卖家会得到大约 90% 的金额,大约 10% 的金额会转移给我。但如果客户想要对该产品进行退款,那么它应该从主要接收方
我是一名优秀的程序员,十分优秀!