#RJ01
1 messages · Page 1 of 1 (latest)
Yes you can use Postman. It's just the matter of calling a RESTful API
We have an example Postman collection here https://www.postman.com/stripedev/workspace/stripe-developers/overview
Hello, I was planning to use checkout, but it has only create checkout then I don't know how to confirm that checkout via postman
We want to do everything in API Calls only.. from creating products, customers, prices, tax and transactions with collecting of tax. No UI included. since we created our checkout page..
Ah Checkout can't be confirmed programatically. It's designed for that usage (your Customer supposes to confirms by visiting the Stripe hosted page)
You can't confirm any transaction 100% programatically, because somewhere you will be exposed to PCI DSS if you have the card information touching your server or network
is that a bad thing? and against the law?
by the way we are not saving the card information
we are planning to just pass it to stripe api endpoints right away.
How do you do that without any UI?
PCI DSS is a regulation for processing card, more information in https://stripe.com/docs/security/guide
I meant we are planning not use any Stripe UI.. here let me share it to you our plan.
So we created our web application including our own checkout page.
the design is not to save any card details of a customer because that is in our law.
We are planning to get those data in our checkout page and send straight away to stripe API.
We will use Stripe API endpoints for,
Create Customer
Create Products
Create Price
Create Card and assign to customer
Create Subscriptions (Monthly and Yearly Subs) including tax collection
Create One time payment transaction using payment intent
Our problem now is we also need to collect tax in one time payment transactions, unfortunately payment intent does not cater tax collection.
So we are looking now what can we use for payment APIs that cater one time payment transactions as well as collecting tax just by using stripe API Endpoints, so we can integrate it to our web page.
if you can suggest any payment APIs that suits to our requirements that will be great and very helpful thank you
I understand you want to use Checkout since it supports Tax for one time collection, but yes that will involves some UI.
I am trying to tell even if you don't use Checkout, you will need some kind of UI anyway. ie how do you confirm the Payment Intent in your one-time payment flow? or how do you collect payment method for your Subscription?
we created our own checkout page.. but in the backend all functions that we will use is stripe APIs..
our checkout page can, show the products, amount and has a card information input section and a pay button.
clicking pay button will call stripe APIs to complete and charge the transaction to the customer.
Yeah I want to make sure that part is implemented properly. How are you implement the pay button and the card information input?
Using Stripe PaymentElement? or not any Stripe SDK at all?
with payment elements
Okie nice! You are good with PCI DSS. Thanks for confirming