#delightful_tiger_32309
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- delightful_tiger_32309, 5 minutes ago, 7 messages
- tiger-checkout-customization, 2 days ago, 31 messages
sorry
Hello! We don't reopen previous threads, but I'm happy to help you here!
What's up?
Did you find the request ID?
Ah, okay, so this is a destination charge on a connected account, which means the flow will be similar to the one shown here: https://stripe.com/docs/connect/destination-charges#flow-of-funds-app-fee
Your platform account should have a Payment Intent, Charge, and Transfer which indicate the amounts involved.
ok
Do I have to do this transfer myself by code? I don't understand what this means
No, the Transfer happens automatically given the API request you shared.
Ok, I understand but I don't see anything on my balance panel, where is it?
I'm not sure what you mean when you say you don't see anything. Can you explain in more detail?
I can't tell for sure just from a screenshot like that, but yes, it seems like these might be collected fees.
now .. ?
the mount 3.90 + 3.90 + 1.30
ohhh I think I already saw it
3 fee applicatios fee 9.10 will be available on November 20
Yep.
ok, the amount is not immediate but it takes a week
Yep.
You can read about the payout schedule here: https://stripe.com/docs/payouts#payout-schedule
And the payout speed below that.
What are your other questions?
I need to charge my seller after 15 days of registering on my platform, what are the options I can have from stripe? I was thinking about creating a product subscription for the seller to enter and pay and then transfer the money to my platform account, would it be a correct option?
You could use a Subscription with a 15 day trial period, but I would only recommend that if you're going to be charging them on a regular basis.
If it's just a one-time payment you should probably use a Setup Intent initially: https://stripe.com/docs/payments/save-and-reuse
uhmmm
but my use case is to get paid after 15 days but the seller executes the payment manually
👋 hopping in here since rubeus had to head out
Can you clarify what you mean by the seller executes the payment manually?
My seller pays for a subscription on my platform but subscribes after a 15-day trial.
Gotcha, then you likely want to collect payment details from your seller and create a Subscriptoin w/ a 15 day trial for them on your platform account
ok
That's possible?
For that I need to obtain the payment method, debit or credit card.
I remember I couldn't do that when I tried to code my subscription with a payment method from the frontend, stripe doesn't allow it.
Yes, it should be possible
Do you remember what error you were seeing when you tried it before?
I don't remember well but it told me that I had to contact support to enable and capture the card data and create my payment method
Other options was to use striped elements.
Were you potentially attempting to use raw card data? That's a flow that has some additional requirements (and our default recommendation is to use elements to collect the payment method)
yes, get card data and create payment method and then create subscritions
Yeah if you were trying to use raw card data then those errors are expected and you do have to contact support to be able to use that flow.
ah ok
then I don't understand...
is similar to this ?
Yes, Rubeus's suggestion is the one I've been giving you
is there another?
For example
1 - seller creates account on my platform
2- after 15 days, my seller receives an email that he has to pay the subscription from now on of $5 monthly
That would still involve using our Subscriptions API - if you want a recurring payment then there's no way around using that API (unless you want to be managing all those recurring payments yourself)
The subscriptions API would allow you to send an email w/ a link to pay as well - I'd highly recommend at least trying out the Subscriptions API a bit and seeing if it works for your use case
Yes, you could use the subscriptions API but you would also have to use stripe elements for the front. The last option is to use the Checkout session, I send the link to the seller to pay the subscription from now on.
The Subscriptions API doesn't necessarilly require you to use Stripe Elements. If you use collection_method: send_invoice then it sends an email with a link to pay
but for the subscrtiptions api you need the card details
Did you try using collection_method: send_invoice?
No
Definitely try that - It doesn't require a payment method
is there a example how pay subscriptions without details card?
collection_method is the best choice?
I don't believe we have an end to end example for it - but I'd recommend just tryig to create one in test mode and see how it works
is thre link documentation?
We have the API refernce - https://stripe.com/docs/api/subscriptions/create#create_subscription-collection_method and this doc (https://stripe.com/docs/billing/collection-method) which should be helpful