# MetashopApiV1.StoreApi

All URIs are relative to *https://localhost/v1*

Method | HTTP request | Description
------------- | ------------- | -------------
[**productsGet**](StoreApi.md#productsGet) | **GET** /products | Get List of Products
[**storesInfoGet**](StoreApi.md#storesInfoGet) | **GET** /stores/info | Get Store info


<a name="productsGet"></a>
# **productsGet**
> productsGet(opts)

Get List of Products

### Example
```javascript
var MetashopApiV1 = require('metashop_api_v1');

var apiInstance = new MetashopApiV1.StoreApi();

var opts = { 
  'DOMAIN_STORE': "DOMAIN_STORE_example" // String | 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.productsGet(opts, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **DOMAIN_STORE** | **String**|  | [optional] 

### Return type

null (empty response body)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: application/json, application/xml
 - **Accept**: Not defined

<a name="storesInfoGet"></a>
# **storesInfoGet**
> storesInfoGet(opts)

Get Store info

### Example
```javascript
var MetashopApiV1 = require('metashop_api_v1');

var apiInstance = new MetashopApiV1.StoreApi();

var opts = { 
  'DOMAIN_STORE': "DOMAIN_STORE_example" // String | 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.storesInfoGet(opts, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **DOMAIN_STORE** | **String**|  | [optional] 

### Return type

null (empty response body)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: application/json, application/xml
 - **Accept**: Not defined

