bdn/magento-2-meestexpress-api

Module for API communication with MeestExpress API v3.0

0.0.1 2019-10-28 09:51 UTC

This package is auto-updated.

Last update: 2024-03-28 19:52:38 UTC


README

It's extension to communicate with MeestExpress API v3.0

Functionality

  • Authenticate in MeestExpress system
  • Save token for future request
  • Use all endpoints of MeestExpress API

Compatibility

  • Magento 2.1, 2.2, 2.3

1. How to install MeestExpress API

✓ Install MeestExpress API via composer (recommend)

Run the following command in Magento 2 root folder:

composer require bdn/magento-2-meestexpress-api
php bin/magento setup:upgrade

✓ Install ready-to-paste package

  • Download the latest version from Github
  • Unzip it to your project. Folder: app/code/Bdn/MeestExpress
  • Run the following command in Magento 2 root folder:
php bin/magento setup:upgrade

2. User guide

Login into Magento Admin Panel

General Configuration

Insert your MeestExpress credentials

Go to Admin Panel > Stores > Configuration > Services > MeestExpress

3. How to uninstall MeestExpress API

✓ Installed MeestExpress API via composer

Run the following command in Magento 2 root folder:

php bin/magento module:disable Bdn_MeestExpress
php bin/magento cache:flush
composer remove bdn/magento-2-meestexpress-api

✓ Installed ready-to-paste package approach

  • Delete folder: app/code/Bdn/MeestExpress
  • Run the following command in Magento 2 root folder:
php bin/magento module:disable Bdn_MeestExpress
php bin/magento cache:flush