Kiosk Mode
SCI supports kiosk mode, allowing your POS to process transactions without an operator.
Overview
In kiosk mode, any transaction that requires a signature is automatically declined. This means the POS can operate in a semi-unattended environment where no staff member is needed to approve or decline signature transactions.
Enabling kiosk mode
Set pos_auto_decline_signature to true when creating a transaction.
POST /v1/transactions
{
"pos_auto_decline_signature": true
}| Field | Required | Description |
|---|---|---|
| pos_auto_decline_signature | No | When true, signature transactions are automatically declined. Defaults to false. |
How it behaves
When pos_auto_decline_signature is true and a signature transaction occurs:
- The signature is declined automatically
- No signature action is sent to your POS
- The transaction result reflects the decline
Updated 1 day ago