Payment Methods

Accept any payment app, any wallet, any card any way your customer wants.

SensePass supports currently 105 payment methods with a single API interface for all of them, we continue to add payment methods to our network.

Credit Cards (25)

  • Cardknox

  • NMI

  • TSYS

  • Shift4

  • Authorize.net

  • Elavon

  • Clover

  • Moneris

  • Chase

  • Nuvei

  • DLocal

  • Adyen

  • Coastal Pay

  • Stripe

  • Square

  • Shopify Payments

  • Linkly

  • Westpac

  • First Data

  • Global Payments

  • Heartland Payment

  • Worldpay

  • North American Bancard

  • Electronic Payment Exchange (EPX)

  • Braintree

Wallets (9)

  • Apple Pay

  • Google Payâ„¢

  • PayPal

  • Venmo

  • Amazon Pay

  • Samsung Pay

  • AliPay

  • WeChat Pay

  • Kakao Pay

Buy Now Pay Later - BNPL (10)

  • Klarna

  • SplitIt

  • Sezzle

  • ChargeAfter

  • AfterPay

  • Zip

  • Affirm

  • WeGetFinancing

  • Jifiti

  • Skeps

Bank Payments (4)

  • Trustly

  • ACH

  • EFT

  • Link Money

LATAM, Asia, Africa (54)

  • Mobile Money

  • PIX

  • Boleto

  • Abitab

  • PSE

  • OXXO

  • MercadoPago

  • SPEI

  • Pago Efectevio

  • Infonet

  • Pago al Paso

  • Pago Efectivo

  • Pay Cash

  • Pay Valida

  • Yape

  • au PAY

  • Dana

  • dBarai

  • DragaonPay

  • DuitNow

  • Kobini

  • LINE Pay

  • Lpay

  • Merpay

  • Momo wallet

  • Naver Pay

  • NPP

  • Payco

  • PayPay

  • PromptPay

  • QRIS

  • Rakuten Pay

  • SSGPAY

  • TOSS Payments

  • Touch 'n Go

  • TrueMoney

  • UPI

  • ZaloPay

  • CLAVE

  • CoDi

  • Daviplata

  • Efecty

  • Nequi

  • Pay4Fun

  • Sencillito

  • WebPay

  • Rapipago

  • Cobro Express

  • Pago Facil

  • PicPay

  • NuPay

  • Sencillito

  • Khipu

  • Servipag

  • Sinpe

  • Sinpe Movil

  • PuntoXpress

  • Akisi

  • Practipago

  • Wepa

  • Zimple

  • Sigo Money

  • Billetera Personal

  • Wally

  • Giros Claro

  • BCP

  • Payvalida

  • Redpagos

Crypto (3)

  • Coinbase

  • BitPay

  • PalWallet

API for Fetching Payment Providers

GET /transactions/paymentProviders/list

Request Body

Name
Type
Description

deviceId

string

Terminal unique device ID provided by SensePass (For Device based Transactions) - Required if apiKey is empty

apiKey

string

Merchant ID provided by SensePass (For Web based Transactions) - Required if deviceId is empty

[
  {
    "name": "PayPal",
    "description": "Paypal Production",
    "type": "wallet",
    "confirmationPrefix": "145",
    "isPartialRefundSupported": true,
    "environment": "Production",
    "providerId": "FLTBxa5D/z/gmjdNeTm0IXNVOOaiyhQBqRrIaTs1kcI="
  }
]

API for Fetching Payment Methods by method type

GET /transactions/paymentProviders/payment-methods

Request Body

Name
Type
Description

deviceId

string

Terminal unique device ID provided by SensePass (For Device based Transactions) - Required if apiKey is empty

apiKey

string

Merchant ID provided by SensePass (For Web based Transactions) - Required if deviceId is empty

methodType

string

Transaction Type: 0. 'payment' = Regular Payment 1. 'tokenize' = Tokenization 2. 'authorize' = Authorization 3. 'credit' = Credit transaction

{
	"paymentMethods": [
		{
		  "id": 3,
		  "name": "credit-card",
		  "type": "credit-card"
		},
		{
		  "id": 4,
		  "name": "paypal",
		  "type": "wallet"
		},		
	]
}

All merchants must adhere to the Google Pay APIs Acceptable Use Policy and accept the terms defined in the Google Pay API Terms of Service.

Google Pay is a trademark of Google LLC.

Last updated

Was this helpful?