The primary purpose of this component is to integrate an external system with the Magento API. It generates actions based on JSON schemas from relevant Magento API endpoints and is compatible with Magento version 2.4
.
Magento is a powerful, flexible platform offering a comprehensive suite of features for building and managing complex e-commerce sites. It supports advanced integrations, extensive customizations, and features an extensible architecture that enables seamless third-party system integration.
Name | Mandatory | Description | Values |
---|---|---|---|
BULK_EXTRACT_PAGE_SIZE |
false | Define max page for one call in Bulk Extract trigger | Integer, default is 1000 |
The technical notes page gives some technical details about Magento2 component like changelog.
Token-based authentication is implemented in the component.
username
and password
fields are required, Integration Token
field should be empty.
A token is generated for each request.Integration Token
field is required, username
and password
fields should be empty.Dropdown list for selecting the minor version of Magento 2. Currently, only version 2.4
is available. This is a required field.
Dropdown list with an edition of Magento 2. It is possible to select Open source
or Enterprise
edition. Required field.
It is needed to specify url of Magento instance like https://magento.instance.com
. Required field.
It is needed to specify username. Required in pair with password
for Admin Token authorization
.
It is needed to specify password. Required in pair with username
for Admin Token authorization
An integration token must be specified. Required for Integration Token authorization
Magento2 component includes the following triggers:
Get New and Updated Objects Polling Lookup objects polling trigger.
Magento2 component includes the following actions:
Delete Object
This action allows you to delete the following object types: customer
or product
by unique criteria.
Lookup Object by ID
This action allows you to search up one of the object types: customer
, product
or sales order
by unique criteria.
Make Raw Request Given a field-value return all matching records.
Lookup Objects Given a field-value return all matching records.
Upsert Object Given a field-value return all matching records.
Current component version was tested with Magento v2.4.7
release. Correct component behavior is not guaranteed for other Magento2 versions.
Deprecated triggers and actions don’t support Integration Token authorization
, only Admin Token authorization
.
Currently Magento2 has a bug where encoded URI’s are not recognised and will throw errors. For example if you have some/sku
, it will be encoded to some%2Fsku
. However, due to the bug this will throw errors. Refrain from using URI’s that have special characters which are meant to be encoded.
Deleting products through the API does not function in Magento v2.3.6
release due to a bug.
When specifying a value for criteria fields in the Lookup Objects action, boolean values (true
or false
) will not work correctly. Instead, you must use integer representations:
1
for true
0
for false