#dannyboy
1 messages · Page 1 of 1 (latest)
hi vanya!
Moving your message to this thread:
https://dashboard.stripe.com/test/connect/transfers/tr_3MGioMLPsFnWdzcR0i0g92z6
In this URL: https://dashboard.stripe.com/test/connect/transfers/tr_3MGioMLPsFnWdzcR0i0g92z6 source_transaction is clickable.. but when i go there, there is no way to go back to this URL
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
that transfer group isn't clickable
Let me check
That's a manual transfer. But when i use the transfer_data + destination params .. It's clickable.. Sample: https://dashboard.stripe.com/test/payments/pi_3MFCojLPsFnWdzcR1p4OrxL3
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Background: We are currently using transfer_data + destination params .. But we will be changing it to manual transfers..
Still looking, please be patient.
Could you please share code snippets of how are you creating those Payment Intents?
something like this
Stripe::PaymentIntent.create({
amount: 1000,
currency: 'USD',
customer: 'ID',
automatic_payment_methods: {
enabled: true,
}
})
Then when creating Transfer...
Stripe::Transfer.create({
amount: 500,
currency: 'USD',
destination: 'acct_Xxxx'
source_transaction: payment_intent.charges.first.id,
transfer_group: 'order-12333',
})
ruby library
@rigid slate ?
I'm working on migrating to use Payment Elements
Thanks for sharing. Let me check
I see now, that is a limitation of the Dashboard. You can't link from Payment Intent to the Transfer that it went into if you do separate charge and transfer
okay.. so there is nothing i can do to link them?
@grizzled wind maybe you can help?
Yes was already looking in to this. Unfortunately it looks like this is not currently possible. I can put in feedback to allow this in the dashboard, but can't guarantee if/when it will be added
got it. It's nice to have since I'm thinking Payment Element is much better that PAymentIntent as it supports more Wallets
Thank you
Yes definitely, I see the value in this. Sorry we don't have this today