Payment Methods

Overview & Matrix

Every method you can accept, and what changes in the request when you switch between them.

All payment methods in Tonder work through the same unified /process/ endpoint. You just change payment_method.type and add the method-specific parameters, making it easy to offer multiple options without managing different integrations.

{
  "operation_type": "payment",
  "amount": 100.00,
  "currency": "MXN",
  "customer": { /* customer data */ },
  "payment_method": {
    "type": "CARD"
  },
  "client_reference": "ORD-001"
}

Available methods

MethodTypeBest forProcessing time
CardsInstantE-commerce, instant confirmationImmediate
Apple PayInstantSafari / iOS shoppers, via the Web SDK buttonImmediate
MercadoPagoInstantDigital wallet customersImmediate
SPEIBank transferHigher-value, B2BReal-time
OXXO PayCashCustomers without bank accounts24-48 hours
Cash vouchersCashRegions without OXXO coverage24-48 hours

Country and network availability, and each method's support for deposits/withdrawals/refunds, vary by market. See Country coverage for the full breakdown.

Implementation strategy

They provide immediate confirmation and work for most customers.

Essential in the Mexican market, where cash is still popular.

Bank transfers are trusted for larger transactions.

Add digital wallets and alternative methods based on customer feedback.

Set up webhooks to track asynchronous payments (OXXO Pay, SPEI, Cash vouchers).

Next steps

Was this page helpful?

On this page