Search by

A Magento 2 module that creates tamara payment methods

Package info

github.com/Tamara-Technology/magento

Type:magento2-module

pkg:composer/tamara-solution/magento

Statistics

Installs: 84 370

Dependents: 0

Suggesters: 0

Stars: 10

Open Issues: 5

2.13.2 2026-09-14 13:18 UTC

This package is auto-updated.

Last update: 2026-09-14 13:19:24 UTC


README

Tamara extension for Magento 2.3 & 2.4

This extension allows you to use tamara as a payment gateway in your Magento store.

Installation steps

Installation Using Composer (Recommended)

If you are using PHP 8.4+

composer require tamara-solution/magento:^2.13.2 tamara-solution/php-sdk:^3.0.3

otherwise

composer require tamara-solution/magento:^2.13.2 tamara-solution/php-sdk:^2.0.11
php bin/magento module:enable Tamara_Checkout

php bin/magento setup:upgrade

php bin/magento setup:di:compile

php bin/magento setup:static-content:deploy

php bin/magento cache:flush

Manual Setup

  • Create folder called Tamara/Checkout in [ROOT]/app/code/

  • Download and extract files from this github repository to the folder.

  • Open the command line interface.

  • Run the following command to install our php sdk:

composer require tamara-solution/php-sdk
  • Enable Tamara Checkout by running below command:
php bin/magento module:enable Tamara_Checkout

Magento setup upgrade:

php bin/magento setup:upgrade

Magento Dependencies Injection Compile:

php bin/magento setup:di:compile

Magento Static Content deployment:

php bin/magento setup:static-content:deploy
  • Flush cache
php bin/magento cache:flush

Admin Configuration

Login to your Magento Admin

Navigate to Store > Configuration > Sales > Payment Methods > Tamara Checkout

See full instructions here https://docs.tamara.co/docs/magento-configuration

API Configuration

Set the API URL that you get from us for example for SANDBOX https://api-sandbox.tamara.co

Set the API Token that you get from us

Set the Notification Token that you get from us

Link to tamara introduction page, this link will be attached onto the tamara payment image that's displayed next to the payment title on the checkout page. Please put https://www.tamara.co

Link login tamara for the customer, this link will be attached onto the tamara customer profile logo after redirecting back from tamara checkout for success case. Please put https://app.tamara.co

Enable trigger to Tamara, this option will allow you to automatically trigger Capture, Refund or Cancellation to tamara when you perform corresponding action with Magento or not. If disabled, you have to integrate with our API directly.

Checkout Order Statuses

Here you can specify which statuses you want to update for the order in case of success, failure, expire or cancel from Tamara.

Order Status Synchronization

Under Tamara Checkout > Order Status Synchronization you can enable a cron that reconciles Magento orders still in new / pending_payment with their current status on Tamara.

  • Looks up the Tamara order by Tamara order ID first, then by Magento increment ID (reference ID) as a fallback
  • Authorises approved orders, synchronises authorised/captured orders, and cancels expired, declined, or cancelled checkouts using the configured Magento statuses
  • Also runs on the payment success redirect so shoppers are not left pending when webhooks are delayed
  • Manual run: php bin/magento tamara:orders-status-sync --start-time="now"