#sarumilli
1 messages · Page 1 of 1 (latest)
Hello, can you send me a transfer that you created this way?
TransferCreateParams.builder()
.setAmount((long) (10000))
.setCurrency("GBP"))
.setDestination(shopModel.getStripeAccountId())
.putAllMetadata(metaDataMap)
.setTransferGroup(orderModel.getGuid())
.setSourceTransaction(chargeId)
.setDescription("Sreenivas Arumilli")
.build();
Sorry, I more meant the ID of the transfer in your screenshot (tr_1234...)
tr_3MqzBzIxSO5Q3fYZ1jhgHorI
When I create the transfer it is creating a paymentIntent but it doesn't have any useful info to seller if he wants to refund
Hi @vital flax
Was actually just looking at that ID
oh ok thanks
Apologies the server is pretty busy today so I am bouncing around a bit still. Will get back to you on this transfer in a minute
That transfer is creating a paymentIntent py_1MqzVAREvMiZEF0Gd78tXpKf
And so you want this metadata to show up in the user's dashboard page?
but that paymentIntent doesn't have any useful info
yes the metadata and description which I added to have it on PaymentIntent so that they can refund when they require. If we don't have any data then noway we identify the paymentIntent to refund the amount
So I think this is just a case of us not copying metadata over to the new object. There are only a couple of places in the API where we do set that
Oh and you are transferring to an Express account, we actually do have a way for you to set the description that they see in their express dashboard
Basically you can set the description on the charge on their account https://stripe.com/docs/connect/customize-express-dashboard#set-custom-descriptions
Also note that you need to reach out to our support team to enable this flow. Otherwise you can set the description but it does not show up in the express dashboard https://support.stripe.com/?contact=true
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Thanks I will check