Overview
The Magento 2 Order Subscriber is a configuration-based subscriber that listens for order-related events from a Magento 2 source system. It replaces the deprecated prototype-basedmagento2-order-subscriber previously used in the Legacy Magento 2 Connector.
This component has been migrated from a prototype-based implementation to a configuration-based setup as part of the Legacy Magento 2 Connector replacement project.
Prototype vs Configuration-based
If you need to handle a different payload structure or use case, you must duplicate this Subscriber and adjust the configuration accordingly. Do not modify an existing configuration as another Route already uses it.
Type
SubscriberPurpose
This Subscriber listens to incoming order data from Magento 2 and triggers the appropriate Route for further processing. It acts as the entry point for order-related integration flows.Configuration
Usage
- Navigate to Subscribers in your Alumio environment.
- Search for or create a new Magento 2 Order Subscriber.
- Configure the required parameters as described above.
- Attach this Subscriber to the relevant route as the Incoming configuration.
Deprecated VS New
An example of the deprecated configuration:


Notes
- Replaces the prototype:
magento2-order-subscriber - Unlike the prototype-based implementation, this configuration-based subscriber is not reusable across different purposes or payloads. If you need to handle a different payload structure or use case, you must duplicate this Subscriber and adjust the configuration accordingly.
- Ensure the Magento 2 API credentials are correctly configured before activating this Subscriber.
- For large order volumes, tune the
limitparameter to avoid timeouts.