Magento – Rest API Acess denied 403 for customers and orders

customermagento-1.9ordersrest

I am trying to get the products,customers and orders through REST Api. It's working forapi/rest/products getting product collection. But unable fetch the customers api/rest/customers and orders api/rest/orders collection it shows Access denied – 403

Best Answer

Magento REST API. These three access levels are as follows:

  1. Guest
  2. Customer
  3. Admin

Guest: This level has access only to public resources. eg. Retrive products, Retrive categories & Retrive products images

Customer: Customer can be a registered and logged in user. This type of user can have access only to its own resources as well as to public resources.

Admin: Admin can be the store owner. This type has full set of permissions

See more details click here

Related Topic