All URIs are relative to https://api.beezup.com/v2
Method | HTTP request | Description |
---|---|---|
exportChannelCatalogProductInfoList | POST /user/channelCatalogs/{channelCatalogId}/products/export | Export channel catalog product information list |
getChannelCatalogProductByChannelCatalog | POST /user/channelCatalogs/products | Get channel catalog products related to these channel catalogs |
getChannelCatalogProductInfo | GET /user/channelCatalogs/{channelCatalogId}/products/{productId} | Get channel catalog product information |
getChannelCatalogProductInfoList | POST /user/channelCatalogs/{channelCatalogId}/products | Get channel catalog product information list |
getChannelCatalogProductsCounters | GET /user/channelCatalogs/{channelCatalogId}/products/counters | Get channel catalog products' counters |
\Swagger\Client\Model\BeezUPCommonLink3 exportChannelCatalogProductInfoList($channel_catalog_id, $format, $request)
Export channel catalog product information list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Ocp-Apim-Subscription-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Ocp-Apim-Subscription-Key', 'Bearer');
$apiInstance = new Swagger\Client\Api\ChannelCatalogsProductsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$channel_catalog_id = "\"6d6b04de-406b-4539-8e7e-bf3e8da5dfb0\""; // string | The channel catalog identifier
$format = "format_example"; // string | The file type of the exportation
$request = new \Swagger\Client\Model\GetChannelCatalogProductInfoListRequest(); // \Swagger\Client\Model\GetChannelCatalogProductInfoListRequest | The channel catalog product list filter
try {
$result = $apiInstance->exportChannelCatalogProductInfoList($channel_catalog_id, $format, $request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ChannelCatalogsProductsApi->exportChannelCatalogProductInfoList: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
channel_catalog_id | string | The channel catalog identifier | |
format | string | The file type of the exportation | |
request | \Swagger\Client\Model\GetChannelCatalogProductInfoListRequest | The channel catalog product list filter |
\Swagger\Client\Model\BeezUPCommonLink3
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\ChannelCatalogProductByChannelCatalogResponse getChannelCatalogProductByChannelCatalog($request)
Get channel catalog products related to these channel catalogs
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Ocp-Apim-Subscription-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Ocp-Apim-Subscription-Key', 'Bearer');
$apiInstance = new Swagger\Client\Api\ChannelCatalogsProductsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$request = new \Swagger\Client\Model\ChannelCatalogProductByChannelCatalogRequest(); // \Swagger\Client\Model\ChannelCatalogProductByChannelCatalogRequest |
try {
$result = $apiInstance->getChannelCatalogProductByChannelCatalog($request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ChannelCatalogsProductsApi->getChannelCatalogProductByChannelCatalog: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
request | \Swagger\Client\Model\ChannelCatalogProductByChannelCatalogRequest |
\Swagger\Client\Model\ChannelCatalogProductByChannelCatalogResponse
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\ChannelCatalogProductInfo getChannelCatalogProductInfo($channel_catalog_id, $product_id)
Get channel catalog product information
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Ocp-Apim-Subscription-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Ocp-Apim-Subscription-Key', 'Bearer');
$apiInstance = new Swagger\Client\Api\ChannelCatalogsProductsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$channel_catalog_id = "\"6d6b04de-406b-4539-8e7e-bf3e8da5dfb0\""; // string | The channel catalog identifier
$product_id = "\"578419df-1bbf-41a6-96fa-862e42182b67\""; // string | The product identifier
try {
$result = $apiInstance->getChannelCatalogProductInfo($channel_catalog_id, $product_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ChannelCatalogsProductsApi->getChannelCatalogProductInfo: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
channel_catalog_id | string | The channel catalog identifier | |
product_id | string | The product identifier |
\Swagger\Client\Model\ChannelCatalogProductInfo
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\ChannelCatalogProductInfoList getChannelCatalogProductInfoList($channel_catalog_id, $request)
Get channel catalog product information list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Ocp-Apim-Subscription-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Ocp-Apim-Subscription-Key', 'Bearer');
$apiInstance = new Swagger\Client\Api\ChannelCatalogsProductsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$channel_catalog_id = "\"6d6b04de-406b-4539-8e7e-bf3e8da5dfb0\""; // string | The channel catalog identifier
$request = new \Swagger\Client\Model\GetChannelCatalogProductInfoListRequest(); // \Swagger\Client\Model\GetChannelCatalogProductInfoListRequest | The channel catalog product list filter
try {
$result = $apiInstance->getChannelCatalogProductInfoList($channel_catalog_id, $request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ChannelCatalogsProductsApi->getChannelCatalogProductInfoList: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
channel_catalog_id | string | The channel catalog identifier | |
request | \Swagger\Client\Model\GetChannelCatalogProductInfoListRequest | The channel catalog product list filter |
\Swagger\Client\Model\ChannelCatalogProductInfoList
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\ChannelCatalogProductsCounters getChannelCatalogProductsCounters($channel_catalog_id)
Get channel catalog products' counters
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Ocp-Apim-Subscription-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Ocp-Apim-Subscription-Key', 'Bearer');
$apiInstance = new Swagger\Client\Api\ChannelCatalogsProductsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$channel_catalog_id = "\"6d6b04de-406b-4539-8e7e-bf3e8da5dfb0\""; // string | The channel catalog identifier
try {
$result = $apiInstance->getChannelCatalogProductsCounters($channel_catalog_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ChannelCatalogsProductsApi->getChannelCatalogProductsCounters: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
channel_catalog_id | string | The channel catalog identifier |
\Swagger\Client\Model\ChannelCatalogProductsCounters
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]