Connect to Powertranz to accept credit and debit card payments.
Powertranz is a payment gateway that provides payment processing solutions for merchants in the Caribbean and Latin America. The platform supports card payments with features like delayed capture, partial refunds, 3-D Secure authentication, and payment method tokenization across multiple currencies and countries.
After setting up your Powertranz connector in the dashboard, configure how transactions are routed to it. Choose one of the following options:
Using Flow - Configure Powertranz as the target connector in Flow to automatically route card transactions to this connector
Using the API - Explicitly set the payment_service_id parameter to the Powertranz connector ID when creating transactions. This overrides any Flow routing rules.
The connector ID can be found in the dashboard under Connections -> Configured connections.
To accept card payments with Powertranz, use one of Gr4vy’s client-side integration methods to securely collect card details. Due to PCI compliance requirements, card data should never be sent directly to your servers.You can integrate using:
Embed - A pre-built, customizable payment form that handles the complete payment flow
Secure Fields - Embed card input fields for building custom payment forms while maintaining PCI compliance
Mobile SDKs - Native SDKs for iOS, Android, React Native, and other platforms
By default, the Powertranz connector attempts 3DS authentication for every card transaction. To skip 3DS for a specific transaction, pass the skipThreeDSecure connection option.
var transaction = await client.Transactions.CreateAsync( transactionCreate: new TransactionCreate() { Amount = 1299, Currency = "TTD", ConnectionOptions = new TransactionCreateConnectionOptions() { PowertranzCard = new ConnectionOptionsPowertranzCard() { SkipThreeDSecure = "true", }, }, Country = "TT", PaymentMethod = TransactionCreatePaymentMethod.CreateCheckoutSessionWithUrlPaymentMethodCreate( new CardPaymentMethodCreate() { Method = "card", Number = "4111111111111111", ExpirationDate = "12/30", SecurityCode = "123", } ), });
When 3DS is enabled, Powertranz may perform a redirect to authenticate the card, even when the card is not enrolled in 3DS. This redirect completes frictionless without the buyer’s explicit approval.
Powertranz does not support open loop payments. It does support recurring payments with the payment_source set to either card_on_file or recurring.For customer-initiated (CIT) payments, no additional data is required. For merchant-initiated (MIT) payments with either card_on_file or recurring, pass the scheme_transaction_id from the previous transaction as the previous_scheme_transaction_id on the new transaction.
The previous_scheme_transaction_id only needs to be sent if merchant_initiated is set to true. Always send the scheme_transaction_id returned in the response for the previous transaction in the series.