Skip to content

Latest commit

 

History

History
103 lines (70 loc) · 3.13 KB

FeatureApi.md

File metadata and controls

103 lines (70 loc) · 3.13 KB

Swagger\Client\FeatureApi

All URIs are relative to /

Method HTTP request Description
apiV2FeatureDetailsPost POST /api/v2/Feature/Details
apiV2FeatureSearchPost POST /api/v2/Feature/Search

apiV2FeatureDetailsPost

\Swagger\Client\Model\EtimFeature apiV2FeatureDetailsPost($body)

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$apiInstance = new Swagger\Client\Api\FeatureApi(
    // 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()
);
$body = new \Swagger\Client\Model\EntityDetailsInput(); // \Swagger\Client\Model\EntityDetailsInput | 

try {
    $result = $apiInstance->apiV2FeatureDetailsPost($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling FeatureApi->apiV2FeatureDetailsPost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body \Swagger\Client\Model\EntityDetailsInput [optional]

Return type

\Swagger\Client\Model\EtimFeature

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: text/plain, application/json, text/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

apiV2FeatureSearchPost

\Swagger\Client\Model\FeatureSearchOutput apiV2FeatureSearchPost($body)

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$apiInstance = new Swagger\Client\Api\FeatureApi(
    // 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()
);
$body = new \Swagger\Client\Model\EntitySearchInput(); // \Swagger\Client\Model\EntitySearchInput | 

try {
    $result = $apiInstance->apiV2FeatureSearchPost($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling FeatureApi->apiV2FeatureSearchPost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body \Swagger\Client\Model\EntitySearchInput [optional]

Return type

\Swagger\Client\Model\FeatureSearchOutput

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: text/plain, application/json, text/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]