#EatStations

1 messages · Page 1 of 1 (latest)

green talonBOT
coarse surge
#

Is this online or terminal payment?

mint nova
#

online payment

coarse surge
#

Which integration are you using? Checkout Session or Payment Intent?

mint nova
#

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

coarse surge
#

Do you try to adjust the amount before or after customer makes the payment?

mint nova
#

after customer make the payment

coarse surge
#

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:

  1. Adjust the amount before the customer makes the payment
  2. Save customer's card and charge to the saved card for additional amount
mint nova
#

If we do Point 2 - then it will be separate transaction right?

coarse surge
#

Yep! It'll be a separate transaction

mint nova
#

ok, got it. Thank You for quick help!

coarse surge
#

No problem! Happy to help 😄

mint nova
#

is there any way to add TIP amount in existing done transaction?

coarse surge
#

Adding tip to existing completed transaction is only possible for in-person/terminal payment, but not online payment

mint nova
#

in-person/terminal payment - can you send more detail on this?

mint nova
#

ok, I will review it in detail...