#junaid-stripe-qs

1 messages · Page 1 of 1 (latest)

finite nymph
#

hello, most of your questions are answered in Stripe docs.

are you building both the frontend and backend portions? or just frontend?

lucid atlas
finite nymph
#

so some helpful references for you to peruse:

This is the Stripe API reference for all the API calls you can make from your backend: https://stripe.com/docs/api/

That shows you how your backend code can create a Customer object (that is what you need)

and second, reference a payment guide like https://stripe.com/docs/payments/accept-a-payment

or a Stripe Sample to see all the code integrated end to end: https://github.com/stripe-samples/accept-a-payment (the client and server portions)

Securely accept payments online.

GitHub

Learn how to accept a payment from customers around the world with a variety of payment methods. - GitHub - stripe-samples/accept-a-payment: Learn how to accept a payment from customers around the ...

lucid atlas
#

Thank you for this

#

I will look into this

#

Since, this is a startup, and the backend developer is busy we have to switch around our duties, so i am responsible for integrating this stripe payments I have some specific questions that my backend developer asked me to research on. I was wondering if I can ask those, for some clarifications

finite nymph
#

sure you can ask, I can try answer or point you to other resources

lucid atlas
#

We want to tie customer account to the organizational accounts, set recurring subscriptions and plans. Do you guys have a method that uses webhook to get usage, that would help us.
Any resources you can provide us with account information tokenization and how secure that is (since the client side will generate a token with Stripe using our public keys, then send to backend to actually process using our private secure keys)