Request does not match any route error Magento 2 API
I’ve created an extension , while visiting magento.com/rest/V1/wishlist/1/2 it throws error. here are my files – di.xml <?xml version=”1.0″ ?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:ObjectManager/etc/config.xsd”> <preference for=”YourCompanyWishlistWebServiceApiWishlistManagementInterface” type=”YourCompanyWishlistWebServiceModelWishlistManagement” /> </config> webapi.xml <?xml version=”1.0″ ?> <routes xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Webapi:etc/webapi.xsd”> <route url=”/V1/wishlist/:customerId” method=”GET”> <service class=”YourCompanyWishlistWebServiceApiWishlistManagementInterface”… Read More »Request does not match any route error Magento 2 API