fullmetrix/magento-connector

Fullmetrix analytics, segmentation and marketing suite connector for Magento 2 / Adobe Commerce

Maintainers

Package info

github.com/Fullmetrix/magento-connector

Homepage

Documentation

Type:magento2-module

pkg:composer/fullmetrix/magento-connector

Transparency log

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.1.0 2026-08-01 15:53 UTC

This package is auto-updated.

Last update: 2026-08-01 16:24:01 UTC


README

Connects a Magento 2 / Adobe Commerce store to Fullmetrix. Streams orders, customers, products, categories, cart price rules and credit memos, dispatches realtime entity webhooks and visitor tracking events, and supports remote coupon management and cart recovery links.

Compatible with Magento 2.4.4+ and Adobe Commerce (PHP 8.1+).

Installation

Via Composer:

composer require fullmetrix/magento-connector:^1.1
bin/magento module:enable Fullmetrix_Connector
bin/magento setup:upgrade
bin/magento cache:flush

Alternatively, download the ZIP from Fullmetrix, extract it into app/code/Fullmetrix/Connector, then run the same Magento commands.

Configuration

The extension works without configuration. Defaults point to https://fullmetrix.com. To override the API base (self-hosted or staging):

bin/magento config:set fullmetrix/general/api_base "https://fullmetrix.com/api/plugin"

Usage

  1. In the Magento admin, go to Marketing -> Fullmetrix.
  2. Enter the connection code provided by Fullmetrix (format FMTX-XXXX-XXXX-XXXX).
  3. Click Connect. The extension registers with Fullmetrix and receives an HMAC secret.
  4. Fullmetrix performs an initial historical sync and then receives realtime webhooks.

A CLI flow is also available:

bin/magento fullmetrix:connect FMTX-XXXX-XXXX-XXXX
bin/magento fullmetrix:status
bin/magento fullmetrix:disconnect

What is synced

  • Orders with line items, shipping, taxes, coupon lines and payments
  • Customers with addresses and newsletter opt-in status
  • Products, configurable products and their variants, images, categories
  • Cart price rules with coupon codes
  • Credit memos (refunds) with line items
  • Server-side tracking events (identify, add to cart) and the Fullmetrix storefront tracker

Security

All exchanges between the store and Fullmetrix are signed with HMAC-SHA256 (per-connection secret, timestamped, 5 minute tolerance). The extension never exposes data without a valid signature.

Support