#eduardo_api

1 messages · Page 1 of 1 (latest)

dry hingeBOT
#

👋 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/1346256205823217775

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

distant copper
#

Hi there. Can you share more context about what you're trying to do and what changed? An example of what you're referring to will help

mystic rock
#

hi.
this is my code
if ($amountForDoctor !== null && $amountForClinic !== null ){ //is autonomous
$paymentIntent = $this->stripe->paymentIntents->create([
'amount' => $totalPay, // Monto total en centavos
'currency' => 'eur',
'application_fee_amount' => $amountForClinic, // Fee amount for the clinic
'payment_method_types' => ['card_present'],
'capture_method' => 'automatic', // O 'manual' si prefieres capturar después
'description' => $tranferDetails['Citas'] . " - " . $tranferDetails['Tratamiento'], // Fee amount for the clinic
'transfer_data' => ['destination' => $stripeAccountIdTo],

                'metadata' => $tranferDetails,
            ]
    );

i need to propagate the description field to connected account

#

until 28/02 has working

distant copper
#

Okay, so you're creating a PaymentIntent and are using destination charges. To be clear, you're saying that up until February 28, the transfer value on the PaymentIntent would be reflected on the payment you saw on the connected account? Do you have an example PaymentIntent ID?