#arjun-android-pm

1 messages · Page 1 of 1 (latest)

shadow glen
#

hello, what guide are you currently following?
and what is the end goal? Subscriptions? one time Payment?

north flicker
#

Recurring payment through cron

#

With the current updated APIs, payment is getting charged in app. However, I want app developer should only create the payment method and pass it to backend, then backend will make the payment using that payment method

shadow glen
#

you call stripe.createPaymentMethod() in Android and pass an instance of PaymentMethodCreateParams

north flicker
#

Can I use this for update card functionality? Users should be able to update their card information in future. When they update the card details, payment method should get updated against that customer

shadow glen
#

yes, you create a new PaymentMethod, then attach it to the Customer (optionally, delete the older attached PaymentMethod)

north flicker
#

Okay