#Anjali-processing-payments-without-products
1 messages ยท Page 1 of 1 (latest)
ok
Thanks for waiting
No you don't necessarily need to add products on Stripe in order to accept payments
Ok. If so, how can I see the name of the purchased one from stripe dashboard?
But at the same time I don't want to import products
You can use PaymentIntent metadata to pass in information about what's the payment for.
https://stripe.com/docs/api/payment_intents/create#create_payment_intent-metadata
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
oh ok, thanks
NP! ๐ Good luck
Thank you ๐
one more thing. now my code is working like when a amount tranfer to connected account initiated, it takes transfer amount from available cash. so is there any option to say wait for the customer amount gets reflected first in platform stripe balance then transfer perform
Give me a few to look into it
ok
Are you using Separate charges and transfers?
yes
Gotcha. You can specify source transaction on a transfer to get this done
https://stripe.com/docs/api/transfers/create#create_transfer-source_transaction
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok. one more thing regarding payment intent
I am not adding products in stripe dashboard. iNSTEAD, CREATING PAYMENT INTENT, THERE we have option to add amount. then how about the name of the purchased thing? any parameter for that? i can't find one from doc
You'd want to use metadata as I mentioned above