#Muttakin Islam Hasib
1 messages · Page 1 of 1 (latest)
Hi there, you can disable the button when a transfer is in progress and enable the button when the transfer is completed
is there any way to prevent it from the stripe paymentintent
I don't see why you need PaymentIntents API for creating a transfer.
we have balance on our stripe platform dashboard.
and we want to transfer the money to a stripe connect account
like $5 $10 or $3 this type of amount
so what's your question?
is this is the process to implement it?
Yes, this is the example code to create a transfer.
so there is no way to prevent duplicate API call?
is there any way to provide a unique id then it will transfer for only one time
Ok, I guess you are asking about idempotent request (https://stripe.com/docs/api/idempotent_requests#idempotent_requests)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
you can set a Idempotency-Key in your request, so that the subsequent request made with the same Idempotency-Key will no result in a new transfer
what the transfer_group do?
This is a stripe that identifies this transfer as part of a group, and it's a param commonly used in a separate charge and transfer (https://stripe.com/docs/connect/charges-transfers)
It's optional. If you are only transfering funds to one account, you don't need to set it.