#acaiafa
1 messages · Page 1 of 1 (latest)
I'd recommend giving it a try in test mode.
It is possible to configure pricing table with recurring and one-time prices as well as adding a custom call-to-action button on a price.
However, if I remember correctly the pricing table can only support one of these custom CTA prices.
My biggest problem is that I have a customer code in my application and how do I identify that the payment made was from that customer
We have a beta feature that lets you pass customer object
https://stripe.com/docs/payments/checkout/pricing-table#customer-session
I believe that should help
You can also pass in customer email if that's easier for you to handle
https://stripe.com/docs/payments/checkout/pricing-table#customer-email
Even in this case, is it necessary to register the client in the stripe beforehand?
with client, you mean customer? If so, for the beta feature yes
Not for the email
I mean the client of my application, his ID in my application, without having to register him in the stripe.
Sorry, I don't really follow. Let's take a step back..
Can you walk me through what your checkout process currently looks like and how do you want it to work?
I want to put the stripe price list in my application, when the user selects a product to buy, the stripe payment screen will appear, when completing this payment and the payment is made I need to know in my system which customer and product of this purchase to be able to write it off. These products are recurring, so I will always need to be informed.
Did you understand?
I see. Are you registering the customers in your system before they're being redirected to pricing table?
If so, you can pass the ID that you have in your system for the customer to client-reference-id parameter on the pricing table
This ID will then show up on Checkout object. We explain the whole scenario in our docs here
https://stripe.com/docs/payments/checkout/pricing-table#handle-fulfillment-with-the-stripe-api
my products have the package configuration, you can't use the price list from what I understand.
Do you have an example of how I can do this?
Hi there. Taking over for Hanzo as they have to step out
Can you clarify which part you need an example for?
The doc above outlines what to do
My products are packages and this type of product cannot be included in the price list
Limitations
Business models—The pricing table supports common subscription business models like flat-rate, per-seat, tiered pricing, and trials. Other advanced pricing models aren’t supported.
Yeah that's correct. There's no way around that
in that case, you'll need to create your own page with buttons that create the checkout sessions
Is there any API or something where I can get product data to assemble my screen?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
thanks!