Skip to content

Commit

Permalink
Fix trigger checkout.session.async_payment_succeeded to use SEPA Debit (
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe authored Jul 21, 2023
1 parent acbe394 commit 7d63787
Showing 1 changed file with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,20 @@
"path": "/v1/payment_methods",
"method": "post",
"params": {
"type": "card",
"card": {
"token": "tok_visa"
"type": "sepa_debit",
"sepa_debit": {
"iban": "AT611904300234573201"
},
"billing_details": {
"email": "[email protected]"
"email": "[email protected]",
"name": "Jenny Rosen",
"phone": "1234567890",
"address": {
"line1": "71 Crown Street",
"city": "London",
"postal_code": "W10 2WB",
"country": "GB"
}
}
}
},
Expand Down

0 comments on commit 7d63787

Please sign in to comment.