Stripe Autofill Link button not showing in card details text box
I’m using Stripe’s PHP SDK to create a Payment Intent and then handling the payment on the frontend using Stripe.js. Here’s a brief overview of my implementation:
Stripe: new customer triggers payment method update
I have a webhook that sends out an email to new customers based on invoice.paid
whenever a new customer signs up.
Stripe: new customer triggers payment method update
I have a webhook that sends out an email to new customers based on invoice.paid
whenever a new customer signs up.
Stripe: new customer triggers payment method update
I have a webhook that sends out an email to new customers based on invoice.paid
whenever a new customer signs up.
Using the Stripe API, how to retreive a payment intent from a connected account?
I’m using stripe to build an application that uses connected accounts. I need to retrieve the paymentIntent that was used for a purchase associated with a given connected account. I’m able to create the paymentIntent using the syntax listed as the first example here: https://docs.stripe.com/connect/authentication, but when I try to use the same syntax to retrieve a payment intent I get the following error:
In Stripe Connect, can I split the Stripe fees between a connected account and their customers?
I have a multi-tenant platform which charges the Tenants on a typical tier subscription basis. My platform is using Stripe Connect and each tenant has a connected account. I would like to build a feature which allows Tenants to pass a portion of the Stripe fees to their customers. The closest thing I can find to this is application_fee_amount
but I am not trying to collect that for that platform. Is there any other way to split the typical Stripe fees between connected accounts and their customers?
Get name of promotion code used in Stripe Checkout Session in php
After the checkout is completed I want to get the promotion code that was used by the user (if any) and add it to my database.
Get name of promotion code used in Stripe Checkout Session in php
After the checkout is completed I want to get the promotion code that was used by the user (if any) and add it to my database.
Forward user to Stripe to get card details using only PHP
The scenario is, we have a marketplace platform, where sellers can sell their products to the buyers. Using Stripe connected Express accounts for the sellers with Stripe’s onboarding process, and store only the responded account_id in our databse.
Save IDx in the DB to later check if it has been paid
I’m using the latest version of the stripe API. I have a shopping cart where people can pay instantly with a credit card or generate a bill and pay later. What type of ID should I save in the database so that if the customer makes the payment by bank slip and the bill is paid, upon receiving the command via the webhook I can identify who made the payment.