magento-nodejs
Version:
Magento SOAP API wrapper for Node.js
23 lines (15 loc) • 451 B
Markdown
# Store
## [info](http://www.magentocommerce.com/api/soap/miscellaneous/store.info.html)
Allows you to retrieve information about the required store view.
```js
magento.store.info(callback);
// or
magento.store.info({
storeView: val
}, callback);
```
## [list](http://www.magentocommerce.com/api/soap/miscellaneous/store.list.html)
Allows you to retrieve the list of store views.
```js
magento.store.list(callback);
```