#hamid-transfers
1 messages · Page 1 of 1 (latest)
when i create setup intent
from credit card
I can get this
stripe_intent.charges.data.first.transfer
but in case of sepa_debit
transfer is not there in the object
"amount": null,
"destination": "acct_1JLXf7AQvbs2XshT"
},
why i didn't get transfer
is sepa_debit payment_intent is in processing, there its not returning stripe_intent.charges.data.first.transfer
when i create setup intent
you mean PaymentIntent , SetupIntent does not move funds, PaymentIntent does
why i didn't get transfer
SEPA is an async PaymentMethod, once the Charge is settled and the PaymentIntent moves intosucceededthen the Transfer will be created
right now, the funds have not been settled or moved into your Stripe Balance, so you don't have EUR N in your Stripe Balance to create a EUR N Transfer from
got it 🙂