All URIs are relative to https://api.kinow.com/api
Method | HTTP request | Description |
---|---|---|
attachFeaturesToActor | POST /actors/{actor_id}/features | |
attachFeaturesToBlogPage | POST /blog-pages/{blog_page_id}/features | |
attachFeaturesToCategory | POST /categories/{category_id}/features | |
attachFeaturesToDirector | POST /directors/{director_id}/features | |
attachFeaturesToExtract | POST /extracts/{extract_id}/features | |
attachFeaturesToProduct | POST /products/{product_id}/features | |
attachFeaturesToVideo | POST /videos/{video_id}/features | |
detachFeatureToProduct | DELETE /products/{product_id}/features/{feature_id} | |
getActorFeatures | GET /actors/{actor_id}/features | |
getBlogPageFeatures | GET /blog-pages/{blog_page_id}/features | |
getCategoryFeatures | GET /categories/{category_id}/features | |
getDirectorFeatures | GET /directors/{director_id}/features | |
getExtractFeatures | GET /extracts/{extract_id}/features | |
getFeatureValues | GET /feature-values | |
getFeatures | GET /features | |
getProductFeatures | GET /products/{product_id}/features | |
getVideoFeatures | GET /videos/{video_id}/features |
attachFeaturesToActor($actor_id, $features)
Attach feature to actor
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$actor_id = 789; // int |
$features = "features_example"; // string | To attach existing FeatureValue to actor: ``` [{ \"id_feature\":3, \"id_feature_value\":5 }] ``` To create a custom FeatureValue: ``` [{ \"id_feature\":3, \"custom_value\":[{ \"lang\": 1, \"value\": \"string\" }] }] ```
try {
$api_instance->attachFeaturesToActor($actor_id, $features);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->attachFeaturesToActor: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
actor_id | int | ||
features | string | To attach existing FeatureValue to actor: ``` [{ "id_feature":3, "id_feature_value":5 }] ``` To create a custom FeatureValue: ``` [{ "id_feature":3, "custom_value":[{ "lang": 1, "value": "string" }] }] ``` |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
attachFeaturesToBlogPage($blog_page_id, $features)
Attach feature to blog page
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$blog_page_id = 789; // int |
$features = "features_example"; // string | To attach existing FeatureValue to blog page: ``` [{ \"id_feature\":3, \"id_feature_value\":5 }] ``` To create a custom FeatureValue: ``` [{ \"id_feature\":3, \"custom_value\":[{ \"lang\": 1, \"value\": \"string\" }] }] ```
try {
$api_instance->attachFeaturesToBlogPage($blog_page_id, $features);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->attachFeaturesToBlogPage: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
blog_page_id | int | ||
features | string | To attach existing FeatureValue to blog page: ``` [{ "id_feature":3, "id_feature_value":5 }] ``` To create a custom FeatureValue: ``` [{ "id_feature":3, "custom_value":[{ "lang": 1, "value": "string" }] }] ``` |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
attachFeaturesToCategory($category_id, $features)
Attach feature to category
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$category_id = 789; // int |
$features = "features_example"; // string | To attach existing FeatureValue to Category: ``` [{ \"id_feature\":3, \"id_feature_value\":5 }] ``` To create a custom FeatureValue: ``` [{ \"id_feature\":3, \"custom_value\":[{ \"lang\": 1, \"value\": \"string\" }] }] ```
try {
$api_instance->attachFeaturesToCategory($category_id, $features);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->attachFeaturesToCategory: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
category_id | int | ||
features | string | To attach existing FeatureValue to Category: ``` [{ "id_feature":3, "id_feature_value":5 }] ``` To create a custom FeatureValue: ``` [{ "id_feature":3, "custom_value":[{ "lang": 1, "value": "string" }] }] ``` |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
attachFeaturesToDirector($director_id, $features)
Attach feature to director
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$director_id = 789; // int |
$features = "features_example"; // string | To attach existing FeatureValue to director: ``` [{ \"id_feature\":3, \"id_feature_value\":5 }] ``` To create a custom FeatureValue: ``` [{ \"id_feature\":3, \"custom_value\":[{ \"lang\": 1, \"value\": \"string\" }] }] ```
try {
$api_instance->attachFeaturesToDirector($director_id, $features);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->attachFeaturesToDirector: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
director_id | int | ||
features | string | To attach existing FeatureValue to director: ``` [{ "id_feature":3, "id_feature_value":5 }] ``` To create a custom FeatureValue: ``` [{ "id_feature":3, "custom_value":[{ "lang": 1, "value": "string" }] }] ``` |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
attachFeaturesToExtract($extract_id, $features)
Attach feature to extract
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$extract_id = 789; // int |
$features = "features_example"; // string | To attach existing FeatureValue to Product: ``` [{ \"id_feature\":3, \"id_feature_value\":5 }] ``` To create a custom FeatureValue: ``` [{ \"id_feature\":3, \"custom_value\":[{ \"lang\": 1, \"value\": \"string\" }] }] ```
try {
$api_instance->attachFeaturesToExtract($extract_id, $features);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->attachFeaturesToExtract: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
extract_id | int | ||
features | string | To attach existing FeatureValue to Product: ``` [{ "id_feature":3, "id_feature_value":5 }] ``` To create a custom FeatureValue: ``` [{ "id_feature":3, "custom_value":[{ "lang": 1, "value": "string" }] }] ``` |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
attachFeaturesToProduct($product_id, $features)
Attach feature to product
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$product_id = 789; // int |
$features = "features_example"; // string | To attach existing FeatureValue to Product: ``` [{ \"id_feature\":3, \"id_feature_value\":5 }]``` To create a custom FeatureValue: ``` [{ \"id_feature\":3, \"custom_value\":[{ \"lang\": 1, \"value\": \"string\" }] }]```
try {
$api_instance->attachFeaturesToProduct($product_id, $features);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->attachFeaturesToProduct: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
product_id | int | ||
features | string | To attach existing FeatureValue to Product: ``` [{ "id_feature":3, "id_feature_value":5 }]``` To create a custom FeatureValue: ``` [{ "id_feature":3, "custom_value":[{ "lang": 1, "value": "string" }] }]``` |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
attachFeaturesToVideo($video_id, $features)
Attach feature to video
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$video_id = 789; // int |
$features = "features_example"; // string | To attach existing FeatureValue to Product: ``` [{ \"id_feature\":3, \"id_feature_value\":5 }] ``` To create a custom FeatureValue: ``` [{ \"id_feature\":3, \"custom_value\":[{ \"lang\": 1, \"value\": \"string\" }] }] ```
try {
$api_instance->attachFeaturesToVideo($video_id, $features);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->attachFeaturesToVideo: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
video_id | int | ||
features | string | To attach existing FeatureValue to Product: ``` [{ "id_feature":3, "id_feature_value":5 }] ``` To create a custom FeatureValue: ``` [{ "id_feature":3, "custom_value":[{ "lang": 1, "value": "string" }] }] ``` |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
detachFeatureToProduct($product_id, $feature_id)
Detach feature to product
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$product_id = 789; // int |
$feature_id = 789; // int |
try {
$api_instance->detachFeatureToProduct($product_id, $feature_id);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->detachFeatureToProduct: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
product_id | int | ||
feature_id | int |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\FeatureListResponse getActorFeatures($actor_id, $page, $per_page)
Get actor features
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$actor_id = 789; // int | Actor ID to fetch
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getActorFeatures($actor_id, $page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getActorFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
actor_id | int | Actor ID to fetch | |
page | int | [optional] | |
per_page | int | [optional] |
\Kinow\Client\Model\FeatureListResponse
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\FeatureListResponse getBlogPageFeatures($blog_page_id, $page, $per_page)
Get blog page features
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$blog_page_id = 789; // int | Blog page ID to fetch
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getBlogPageFeatures($blog_page_id, $page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getBlogPageFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
blog_page_id | int | Blog page ID to fetch | |
page | int | [optional] | |
per_page | int | [optional] |
\Kinow\Client\Model\FeatureListResponse
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\FeatureListResponse getCategoryFeatures($category_id, $page, $per_page)
Get category features
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$category_id = 789; // int | Category ID to fetch
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getCategoryFeatures($category_id, $page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getCategoryFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
category_id | int | Category ID to fetch | |
page | int | [optional] | |
per_page | int | [optional] |
\Kinow\Client\Model\FeatureListResponse
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\FeatureListResponse getDirectorFeatures($director_id, $page, $per_page)
Get director features
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$director_id = 789; // int | Director ID to fetch
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getDirectorFeatures($director_id, $page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getDirectorFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
director_id | int | Director ID to fetch | |
page | int | [optional] | |
per_page | int | [optional] |
\Kinow\Client\Model\FeatureListResponse
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\Features getExtractFeatures($extract_id, $page, $per_page)
Get extract features
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$extract_id = 789; // int | Extract ID to fetch
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getExtractFeatures($extract_id, $page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getExtractFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
extract_id | int | Extract ID to fetch | |
page | int | [optional] | |
per_page | int | [optional] |
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\FeatureValueListResponse1 getFeatureValues($page, $per_page)
Get feature value list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getFeatureValues($page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getFeatureValues: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
page | int | [optional] | |
per_page | int | [optional] |
\Kinow\Client\Model\FeatureValueListResponse1
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\FeatureListResponse getFeatures($page, $per_page)
Get feature list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getFeatures($page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
page | int | [optional] | |
per_page | int | [optional] |
\Kinow\Client\Model\FeatureListResponse
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\FeatureListResponse getProductFeatures($product_id, $page, $per_page)
Get product features
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$product_id = 789; // int | Product ID to fetch
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getProductFeatures($product_id, $page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getProductFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
product_id | int | Product ID to fetch | |
page | int | [optional] | |
per_page | int | [optional] |
\Kinow\Client\Model\FeatureListResponse
- Content-Type: Not defined
- Accept: Not defined
\Kinow\Client\Model\Features getVideoFeatures($video_id, $page, $per_page)
Get video features
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiClientId
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Id', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Id', 'Bearer');
// Configure API key authorization: ApiClientSecret
Kinow\Client\Configuration::getDefaultConfiguration()->setApiKey('X-Client-Secret', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Kinow\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-Client-Secret', 'Bearer');
$api_instance = new Kinow\Client\Api\FeaturesApi();
$video_id = 789; // int | Video ID to fetch
$page = 789; // int |
$per_page = 789; // int |
try {
$result = $api_instance->getVideoFeatures($video_id, $page, $per_page);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FeaturesApi->getVideoFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
video_id | int | Video ID to fetch | |
page | int | [optional] | |
per_page | int | [optional] |
- Content-Type: Not defined
- Accept: Not defined