Learn more about SOFORT
SOFORT is a popular online banking payment method in Europe with high usage in Germany, Austria, Switzerland and Belgium. 85 million people use SOFORT, making it a must-have for any business wanting to operate in Europe.
특징 #
통화 처리 | EUR,GBP,CHF |
---|---|
결제 통화 | EUR |
환불 | ✅ |
부분 환불 | ✅ |
여러 차례 부분 환불 | ❌ |
차지백 | ❌ |
통합 방법 #
결제 방법 열거 값입니다: sofort
There is integration method for SOFORT
- 다이렉트 API
- 결제
직접 API #
통합하는 방법 #
직접 API 통합의 경우, 결제 인텐트를 생성하고 단 한 단계로 URL을 가져올 수 있습니다. 다음은 결제 인텐트 생성 데모입니다:
A PaymentIntent is an object that represents your intent to collect payment from your customer and tracks the lifecycle of the payment process. Create a PaymentIntent on your server and specify the amount to collect and a supported currency. If you have an existing Payment Intents integration, add sofort to the list of payment method types.
요청
{
"amount": 2000,
"currency": "EUR",
"confirm": true,
"payment_method_data": {
"type": "sofort",
"billing_details": {
"address": {
"country": "DE"
},
"firstName": "Anthony",
"lastName": "VDK"
}
},
"return_url": "https://wooshpay.com"
}
응답
{
"id": "pi_1670640606184996864",
"object": "payment_intent",
"created": 1687146734000,
"livemode": false,
"currency": "EUR",
"amount": 2000,
"status": "requires_action",
"client_secret": "pi_1670640606184996864_secret_kcK3jYnN2GqGRsrJdFPoqDSR",
"next_action": {
"type": "redirect_to_url",
"sofort_handle_redirect": {
"url": "https://r3.girogate.de/ti/sofortueberweisungmixed?tx=2090826721&rs=8Vz3wcb3qZEEluexd4A9bAzkL7Z9QwKV&cs=868f629696faa261e32b8028f61def5bcce9a7d66e9800987c8a14a4320b74b7"
}
},
"payment_method_types": [
"sofort",
],
"confirmation_method": "automatic",
"return_url": "https://wooshpay.com",
"payment_method": "pm_1670640606088527872",
"capture_method": "automatic"
}
결제 #
결제 흐름 #
- Customer selects ShopeePay from the list of payment methods available and clicks on the Pay botton
- Customers will be redirected to ShopeePay’s page to select bank.
- Customers approve payment via online banking.
- Confirm the transaction by providing the TAN.
세션 만들기 #
요청
{
"cancel_url": "www.wooshpay.com",
"mode": "payment",
"success_url": "https://wooshpay.com/",
"payment_method_types": [
"sofort"
],
"line_items": [
{
"price_data": {
"currency": "GBP",
"product": null,
"unit_amount": 20000,
"product_data": {
"name": "apple"
},
"billing_scheme": "testscheme",
"lookup_key": "test_lookup_key"
},
"quantity": 1
}
]
}
응답
{
"id": "cs_1680928905768206336",
"object": "checkout.session",
"created": 1689599656000,
"livemode": false,
"currency": "GBP",
"customer": "",
"mode": "payment",
"status": "open",
"url": "https://checkouttest.wooshpay.com/pay/cs_test_1680928905768206336?key=pk_test_NTE2Njg1MDgwNDUzOTY4MDc2ODAxOm9Oa3pjN043U2dYWE84VVhGZmF4cThvTTE2ODY2MzgyOTYzMjU",
"cancel_url": "www.wooshpay.com",
"line_items": {
"object": "list",
"data": [
{
"id": "li_1680928905801760768",
"object": "item",
"currency": "GBP",
"description": "apple",
"price": {
"id": "price_1680928905814343680",
"object": "price",
"created": 1689599656000,
"livemode": false,
"active": false,
"currency": "GBP",
"product": {
"id": "prod_1680928905826926592",
"object": "product",
"created": 1689599656000,
"livemode": false,
"active": false,
"name": "apple",
"updated": 1689599656000
},
"type": "one_time",
"unit_amount": 20000,
"billing_scheme": "per_unit",
"lookup_key": "test_lookup_key"
},
"quantity": 1,
"amount_subtotal": 20000,
"amount_total": 20000
}
]
},
"payment_intent": "pi_1680928905998893056",
"payment_method_types": [
"sofort"
],
"payment_status": "unpaid",
"success_url": "https://wooshpay.com/",
"amount_subtotal": 20000,
"amount_total": 20000,
"billing_address_collection": "auto",
"expires_at": 1689686055943,
"payment_link": "",
"client_secret": "pi_1680928905998893056_secret_zV5ZpRdTfntPMBcPWp8tSAir"
}
다음 단계 #
필요에 따라 통합에 더 많은 기능을 추가할 수 있습니다.
웹훅 만들기 #
WooshPay 계정에서 이벤트를 수신하여 연동이 자동으로 반응을 트리거할 수 있도록 합니다. 활성화된 이벤트와 URL에 주로 초점을 맞춘 웹훅을 생성합니다.
환불 생성 #
환불을 생성하여 고객에게 금액을 상환합니다. 부분 환불도 수행할 수 있지만 모든 결제 방법에서 부분 환불을 지원하는 것은 아닙니다. 부분 환불은 원래 거래 금액의 일부만 환불하는 것입니다.