Payment Glossary
Definitions for 31+ payment, fraud, and compliance terms used across ClapPay.
3
An authentication protocol (3DS / 3DS2) that adds a verification step where the customer confirms their identity with their bank. Reduces fraud liability and is required in many regions (e.g., EU under PSD2/SCA).
A
A service that automatically updates stored card details when a card is replaced, renewed, or re-issued. Reduces failed payments due to expired or changed card data.
A hold placed on a customer's funds to confirm they are available. The merchant's bank requests that the issuing bank reserves the specified amount. Authorization does not move money — it only reserves it.
B
C
The process of completing an authorized transaction and moving funds from the customer's account to the merchant's account. Capture can happen immediately (auto-capture) or be delayed up to 7 days.
A unique identifier generated from a card's details (PAN, expiry) that allows tracking the same card across multiple transactions without storing the raw card number. Useful for fraud detection.
A forced reversal of a payment initiated by the card-issuing bank at the customer's request. Unlike refunds, chargebacks result in fees and can affect your processing privileges if rates are too high.
A hosted or embedded checkout experience. Checkout Sessions handle the full payment flow (form display, validation, 3DS, confirmation) and redirect to your success/cancel URLs.
D
A challenge to a transaction raised by a customer with their card issuer. Merchants have a window to submit evidence and contest the dispute. ClapPay notifies you via webhook when a dispute is opened.
ClapPay's single-embed payment component. Renders a complete payment form (method selection, card fields, 3DS) in one iframe. Requires only a Drop-In Session and publishable key on the client side.
E
ClapPay's low-level UI components for building custom payment forms. Each Element (CardElement, CardNumberElement, etc.) is a secure iframe fragment that captures card data without PCI scope on your servers.
F
H
Hash-based Message Authentication Code. ClapPay uses HMAC-SHA256 to sign webhook payloads. Verify the signature using your webhook secret to ensure the payload is genuine and unmodified.
I
N
O
P
A ClapPay object that tracks the lifecycle of a payment. A Payment Intent moves through statuses: requires_payment_method → requires_confirmation → requires_action → processing → succeeded/failed.
A transfer of collected funds from your ClapPay balance to your linked bank account. Payouts occur on your configured schedule (daily, weekly, or monthly).
Payment Card Industry Data Security Standard. A set of security standards for organizations that handle credit card data. ClapPay is PCI Level 1 certified; using Elements or Drop-In minimizes your own PCI scope.
An authorization that explicitly delays capture. Used in hotels, car rentals, and other industries where the final charge amount may differ from the initial hold.
A key prefixed with pk_live_ or pk_test_ used on the client side to initialize the ClapPay SDK. Unlike the secret key, it is safe to expose in browser-side code.
R
A return of funds to the customer, initiated by the merchant. Refunds can be full or partial. They reference a succeeded Payment Intent and typically settle in 5–10 business days.
S
A key prefixed with sk_live_ or sk_test_ used to authenticate server-side API requests. Never expose this in client-side code or public repositories.
The process by which funds from completed transactions are transferred to your bank account. ClapPay settles funds on a rolling basis (typically T+1 or T+2) according to your payout schedule.
A cryptocurrency pegged to a fiat currency (e.g., USDC ≈ 1 USD). ClapPay supports stablecoin payments and settlements, offering merchants a bridge between crypto and fiat.
T
V
W
An HTTP POST request sent by ClapPay to your server when an event occurs (e.g., payment_intent.succeeded). Webhooks are signed with HMAC-SHA256 for verification.