#bayorwor-subscription-ach

1 messages · Page 1 of 1 (latest)

night hearthBOT
cyan crow
#

bayorwor-subscription-ach

#

@surreal topaz that's doable but that's not the best option. There should be no reason to do an initial payment with PaymentIntent and then a Subscription

surreal topaz
#

Any suggestion for me ?

cyan crow
#

I'd need to understand why you are doing it this way. Why are you doing step #3 exactly?

#

Is #3 a different payment unrelated to the subscription? Something else?

surreal topaz
#

In our system, we have one time fees for the users to pay and later subscribe to the rest of the remaining plan

cyan crow
#

Can you give me a concrete example of who would pay what?

surreal topaz
#

we are rendering camera services for users

  1. customers are suppose to pay for the installation fee and some other expenses which are considered as one time fees
  2. The customers subscription to a payment plan for the cameras we installed and make payments every month @cyan crow
cyan crow
#

so is it a normal monthly price plus an extra installation fee the first month, or do you pay the installation fee upfront and the monthly price starts later after installation?

#

Like is it $10/month + $65 on the first month, or $65 upfront and later $10/month

#

@surreal topaz ^ ?

surreal topaz
#

the second scenario

cyan crow
#

gotcha, so in that case your original flow makes sense and should just work

#

The best option really is to
1/ Create a PaymentIntent for the set up fee
2/ Complete it client-side with PaymentElement
3/ After that worked, create a Subscription that starts on the right date for the monthly price

surreal topaz
#

Ok

#

But Ach verification is not instant, how possible can I make the paymentIntent? @cyan crow

cyan crow
#

the way I explained!

#

I recommend reading the docs for it, it explains the flow end to end.

surreal topaz
#

We want to create a custom form that collects the ACH details, tokenised it and pass them to the backend or server-side for payments and subscription, is this possible? @cyan crow

cyan crow
#

No it's not, hence why you should do what I recommended which is the right way to integrate with our API

#

1/ Create a PaymentIntent
2/ Client-side, collect bank account details with PaymentElement and confirm the PaymentIntent
3/ Wait for the payment to succeed or fail.

surreal topaz
#

When the payment succeed, we can now create the subscription right ? @cyan crow

#

@cyan crow can you clarify above for me ?

cyan crow
#

yes

#

sorry missed your messages

surreal topaz
#

Ok thanks

#

Is it recommended for us to do verifications through Microdeposits? @cyan crow

cyan crow
#

we recommend instant verification by default and then fallback to micro-deposits when needed

surreal topaz
#

And stripe handles that automatically?

cyan crow
#

yes

#

did you read the docs I linked you to? It explains everything

surreal topaz
#

On it

cyan crow
#

Try it in Test mode too, it will be a lot more explicit/real

#

cc @twilit cape to take over as I have to run

surreal topaz
#

Ok thanks

night hearthBOT
surreal topaz
#

@twilit cape with my above use-case, how best can I integrate paymentIntent and subscriptions with mircrodeposits

wispy whale
#

Hi there 👋 taking over, as my colleague needs to step away

That's a pretty big question. Did you read the documentation that has been linked in this thread? It explains how to do this in depth. If so, do you have a more specific question?

surreal topaz
#

I really want to use custom form to collect the ACH details and passed the tokenised Id to the server-side for the paymentIntent and subscription process without using paymentElement

wispy whale