Best answer

How get Debit in Email with Stripe Payment link when booking Calendar

  • 8 November 2022
  • 2 replies
  • 48 views

Userlevel 1

Hi everyone,

I am building a website for a personal chef, with Calendly or Acuity Scheduling and Stripe.

If someone books a date with the chef, they should automatically receive an email with a payment link from Stripe. This works fine, except the only payment options are Apple Pay and credit cards, even if I enable other payment options in Stripe, such as SEPA transfer (bank transfers within Eurozone) or Multibanco. The client is located in Portugal, where credit cards are not used as often as bank transfers.

Does anyone know of any technical solution to enable people to pay with bank accounts? I have little coding or webhooks experience, but with a clear explanation or tutorial, there is a lot I can learn.

Thank you so much for reading and have a lovely day! Matthijs

icon

Best answer by MohSwellam 8 November 2022, 12:54

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

2 replies

Userlevel 7
Badge +8

Hi @matthijsm 

 

As per Stripe API Documentation (check here https://stripe.com/docs/api/payment_links/payment_links/create)  

payment_method_types optional enum

The list of payment method types that customers can use. If no value is passed, Stripe will dynamically show relevant payment methods from your payment method settings (20+ payment methods supported).

 

This should help you create the payment methods as needed. 

 

IF for some reason this doesn't work for you (like for example you need this payment link only to have the specific payment method) you can use Webhooks by Zapier to create the payment link as shown on Stripe API Documentation. 

 

curl https://api.stripe.com/v1/payment_links \
-u sk_test_4eC39HqLyjWDarjtT1zdp7dc: \
-d "line_items[0][price]"=price_1M1miT2eZvKYlo2COBskTkJE \
-d "line_items[0][quantity]"=1
Userlevel 1

Hi @MohSwellam,

 

Thank you for your reply. I will study this, and if I have any more questions, post them here.

 

Have a lovely day.