#geeky_express-transfer

1 messages ¡ Page 1 of 1 (latest)

hasty copperBOT
obsidian streamBOT
#

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

hasty copperBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1245046783898292244

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

winter ginkgo
#

This is my current transfer parameters :

        TransferCreateParams params =
                TransferCreateParams.builder()
                        .setAmount(transferCreationDto.amountForMerchant())
                        .setCurrency(transferCreationDto.currency())
                        .setSourceTransaction(transferCreationDto.chargeId())
                        .setTransferGroup(transferCreationDto.transferGroup())
                        .setDescription("Transfer for the order of id : " + transferCreationDto.transferGroup())
                        .putMetadata("orderId", transferCreationDto.transferGroup())
                        .setDestination(transferCreationDto.merchantId())
                        .build();```
#

And would like to include some data like the orderId, and maybe a personnalized message that the connect account could view and refer to as being the payment for a specific order

median moat
#

geeky_express-transfer

winter ginkgo
#

Thanks!

#

Is this new description visible to all accounts, or do I have to call for all accounts associated with this charge to have the description be reflected for each of them?

median moat
#

This description is set for just that one specific Charge py_123 as the result of that specific Transfer.

winter ginkgo
#

Oh I see, its a separate charge than the ch_123 created when the customer pays, thanks