#EatStations
1 messages · Page 1 of 1 (latest)
Is this online or terminal payment?
online payment
Which integration are you using? Checkout Session or Payment Intent?
request v3 version
$paymentIntent = \Stripe\PaymentIntent::create([
'amount' => 60,
'currency' => 'usd',
'payment_method_types' => ['card'],
'capture_method' => 'manual',
'description' => 'Testing from eatstations demo',
]);
We did one one transaction and we want adjust amount multuple times.
e.g. adjusting tip amount OR customer is purcharing extra food item,
then we want adjust on same transaction. We tried different ways but
didn't find any solutions.
e.g. actual transaction amount is $100 and we want to adjust and want to make it $110
Do you try to adjust the amount before or after customer makes the payment?
after customer make the payment
Adjusting the amount on the existing transaction after the payment is not possible for your use case on purchasing extra item.
Two possible ways I can think of:
- Adjust the amount before the customer makes the payment
- Save customer's card and charge to the saved card for additional amount
If we do Point 2 - then it will be separate transaction right?
Yep! It'll be a separate transaction
ok, got it. Thank You for quick help!
No problem! Happy to help 😄
is there any way to add TIP amount in existing done transaction?
Adding tip to existing completed transaction is only possible for in-person/terminal payment, but not online payment
in-person/terminal payment - can you send more detail on this?
ok, I will review it in detail...