#spinningCat
1 messages ยท Page 1 of 1 (latest)
i will use stripe api to make a payment. I need to use checkout api for that right?
Using Checkout is one option, but not required. What are you trying to build?
You can integrate with the payment intents API directly, for example, but this is more complex
You can also use Payment Links to take advantage of Checkout without building anything at all
Depends on what you need
they will send me some parameters. I gave them post end point th them
i will make a payment with those parameters like name, description etc.
Who is "they"?
i have two projects one for payment one for other services
i am responsible from payment
app
app A will post some parameters to app B
it is basically like that
so payment intent and checkout can do the work
Sure, thats feasible. You can use Checkout or Payment Intents directly, at your discretion then.
Are you having any issues integrating that I can help with?
If not, I'd suggest exploring the docs and trying out the integration work, and get in touch if you get stuck ๐
this is the link i am looking
i am searching an example page like that for checkout
and i couldnt find api parameters list of stripe
You can find our guide for integrating using Checkout for payments here: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=checkout
The API for creating sessions is here: https://stripe.com/docs/api/checkout/sessions/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
checkout seems simple enough
one more question tho
there is secret_key
that contains information about credit card, ccv etc. right?
i am just newbie
No, the secret key is your API key for use server side to interact with the API
I suggest reading there for an overview of how this works
okay with publishable key you create form that constains paymenty info. Is that correct?
Correct - you use your Publishable Key client side to securely collect payment details
mm okayu i understand i think
app A will send me publishable key
inside that key there is credit card number, ccv, expiry date etc.. right?
sorry my question are newbie question i didnt do payment system it is my first time
No, that's not how it works
I suggest reviewing our typical payment integration to see how the pieces work. The PK is used to collect details and can be used to save a card (or other payment method) on a customer, or create a payment method etc. You don't get raw card details, by design.
thanks
client_secrets i see
okat it seems payment_itent is what i go for it
see ya tomorrow thanks for your time
Quite welcome, good luck ๐