コンテンツにスキップ
アカウント作成/サインイン
Stripe ドキュメントのロゴ
/
AI に質問
アカウントを作成サインイン
導入方法
決済管理
売上管理
プラットフォームとマーケットプレイス
資金管理
開発者向けリソース
API & SDKヘルプ

Accept a giropay payment非推奨

Learn how to accept giropay, a common payment method in Germany.

警告

Our financial partners are deprecating Giropay. No new business onboarding or transactions will be possible after June 30, 2024. Read our support page for more details.

注意

Stripe は、通貨、支払い方法の制限、その他のパラメーターを評価することで、適切な支払い方法を顧客に自動的に提示できます。

  • 決済の受け付けガイドに従って、動的な決済手段を使用するチェックアウトの統合機能を構築します。
  • 動的な決済手段を使用しない場合は、チェックアウトの導入で、決済方法を手動で設定するために以下のステップに従ってください。

giropay is a single use payment method where customers are required to authenticate their payment. Customers pay with giropay by redirecting from your website, authorizing the payment, then returning to your website where you get immediate notification on whether the payment succeeded or failed. Because giropay is a single use payment method, it isn’t compatible with SetupIntents.

メモ

Your use of giropay must be in accordance with the giropay Terms of Service.

Determine compatibility

サポート対象のビジネスの所在地: Europe, US, CA, NZ, SG, HK, JP, AU, MX

対応可能な通貨: eur

取引通貨: eur

支払いモード: Yes

セットアップモード: No

サブスクリプションモード: No

A Checkout Session must satisfy all of the following conditions to support giropay payments:

  • Prices for all line items must be in the same currency. If you have line items in different currencies, create separate Checkout Sessions for each currency.
  • You can only use one-time line items (recurring subscription plans aren’t supported).

Accept a payment

メモ

このガイドを使用する前に、まず Checkout で決済を受け付けるための実装を構築します。

Use this guide to learn how to enable giropay—it shows the differences between accepting a card payment and using giropay.

Enable giropay as a payment method

When creating a new Checkout Session, you need to:

  1. Add giropay to the list of payment_method_types
  2. Make sure all your line_items use the eur currency
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
Stripe::Checkout::Session.create({ mode: 'payment', payment_method_types: ['card'], payment_method_types: ['card', 'giropay'], line_items: [{ price_data: { currency: 'usd', # To accept `giropay`, all line items must have currency: eur currency: 'eur', product_data: { name: 'T-shirt' }, unit_amount: 2000 }, quantity: 1 }], success_url: 'https://example.com/success' })

注文のフルフィルメント

決済受け付け後に、注文のフルフィルメントを実行する方法を説明します。

Test your integration

When testing your Checkout integration, select giropay as the payment method and click the Pay button.

Handle refunds and disputes

The refund period for giropay is up to 180 days after the original payment.

There is no dispute process—customers authenticate with their bank.

参照情報

  • Checkout fulfillment
  • Customizing Checkout
このページはお役に立ちましたか。
はいいいえ
  • お困りのことがございましたら 、サポートにお問い合わせください。
  • Discord で Stripe の開発者とチャットしてください。
  • 変更ログをご覧ください。
  • ご不明な点がございましたら、お問い合わせください。
  • LLM は llms.txt を参照してください。
  • Powered by Markdoc