#dannyboy

1 messages · Page 1 of 1 (latest)

amber siloBOT
modest gyro
#

hi vanya!

rigid slate
modest gyro
#

that transfer group isn't clickable

rigid slate
#

Let me check

modest gyro
#

Background: We are currently using transfer_data + destination params .. But we will be changing it to manual transfers..

rigid slate
#

Still looking, please be patient.

#

Could you please share code snippets of how are you creating those Payment Intents?

modest gyro
#

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

rigid slate
#

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

modest gyro
#

okay.. so there is nothing i can do to link them?

#

@grizzled wind maybe you can help?

grizzled wind
#

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

modest gyro
#

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

grizzled wind
#

Yes definitely, I see the value in this. Sorry we don't have this today