クーポンを適用するベータ
Checkout セッションの作成時にクーポンを適用します。
プライベートプレビュー
The Custom Checkout integration is in private preview. To request access, こちらをクリックしてください。
discounts 配列の coupon
パラメーターで coupon ID を渡すことで、適用された割引を含む Checkout セッションを作成できます。1 つの Checkout セッションには、クーポンまたはプロモーションコードを 1 つのみ追加できます。
const session = await stripe.checkout.sessions.create({
line_items: [
{
price_data: {
currency: 'usd',
product_data: {
name: 'T-shirt',
},
unit_amount: 2000,
},
quantity: 1,
},
],
mode: 'payment',
ui_mode: 'custom',
return_url: '{{RETURN_URL}}'
discounts: [{coupon: '{{COUPON_ID}}'}],
});