- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi All,
I´m new on Magento, I was reading this document https://devdocs.magento.com/guides/v2.0/rest/generate-local.html and I see that I need to specify the store_id.
Currently, I have only one store and any value works (default, store_id or all). I have omitted the store_id value and it works too.
So, I would like to understand the impacts of each store_id value on my store, based on my current knowledge about Magento(which is not big =] ). I would say that In my case I should use the default. What are your thoughts?
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
if you have only one store You can use default as store_code.
By Default store code would be a default. If you have multiple stores you need to find exact store code for a specified store from admin panel.
Go To Stores -> Settings -> All Stores,
Click on Specific Store view from grid
Select code from store view and use that code as your store code.
Magento 2 Blogs/Tutorial
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you have only one store and you are not using store code in the URL - then you don't need to pass that in API.
As you have only one store so on the API url - you can directly pass your storeurl (http://yoururl.com/index.php/rest/v1)
And later on whatever API you wanted to use - you can pass that method name after V1 - thats works for you !
Hope it helps
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
if you have only one store You can use default as store_code.
By Default store code would be a default. If you have multiple stores you need to find exact store code for a specified store from admin panel.
Go To Stores -> Settings -> All Stores,
Click on Specific Store view from grid
Select code from store view and use that code as your store code.
Magento 2 Blogs/Tutorial
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you have only one store and you are not using store code in the URL - then you don't need to pass that in API.
As you have only one store so on the API url - you can directly pass your storeurl (http://yoururl.com/index.php/rest/v1)
And later on whatever API you wanted to use - you can pass that method name after V1 - thats works for you !
Hope it helps