In this tutorial, Today I will explain to how to get all post params of rest API in Magento 2. Rest API is useful to integrate and pull data from third party. Magento is by default provide many API like Product, Order, Customer etc. We can also create custom rest api to perform action in custom module also. Now, If…
Tag: api
Magento 2 : Get Product Image URL in REST API
In this tutorial, I will explain to you how to get the product image URL in the REST API in Magento 2. When we need to get any product image URL programmatically at the front end side, we have many reference code for that and get easily output. But, when we need to get the product image URL by SKU/id…
Magento 2 : Get orders by customer id using GraphQL
In this article, we will learn about how to get orders list by customer id using GraphQL API in Magento 2. After Magento 2.3, GraphQL is most popular feature to make it simple to fetch all require data with one single request. With GraphQL, you can send a query to your API and get response what you need. So, Now…
Index and Cache Management using Magento 2 REST API
In this tutorial, I will explain you how to manage index and cache management using REST API in Magento 2. When, we changing the data of product,category,catalog rule etc. we need to do re-index for update new data. When, we are managing our Magento store using REST API, the data in Magento updated using API. So, if you want to…