Run Charge and Provide Printed Receipt
The waiter takes the payment card from the guest back to the POS
System and runs a CHARGE transaction for the invoice amount
(excluding any tips). Your POS System then prints merchant and
shopper receipts that include lines for Tip and Total Amount.
The guest receives the payment card together with the printed receipts from the waiter and
can fill in the desired Tip and / or Total Amounts at their discretion. If required, the
guest also provides their signature. Once the guest has left, the waiter collects the
receipt and stores it for later Tip Adjust.
To perform a
CHARGE
that can be Tip Adjusted later
on, modify the
EXECUTE_TRANSACTION_REQUEST
to include
"tipAdjustable": true
for the initial transaction:
{
"tag": "abc123",
"type": "EXECUTE_TRANSACTION_REQUEST",
"resource": "devices/usbReader",
"executeTransactionRequest": {
"transactionParameters": {
"type": "CHARGE",
"amount": 10.00,
"currency": "USD",
"subject": "Bouquet of Flowers",
"customIdentifier": "yourReferenceForTheTransaction",
"tipAdjustable": true
}
}
}