Rest API Magento 2 Product list by Postman
Rest API Magento 2 Product list by Postman Get product list need to create simple module usign api,model,webapi.xml and di.xml Create method in api class. <?php namespace Vendor\Module\Api; /** * Interface ProductStockInterface */ interface ProductDataInterface { /** * get products. * * @return array */ public function getProData(); } Create webapi.xml under etc folder webapi.xml […]
Read More