All URIs are relative to https://api.billit.be
Method | HTTP request | Description |
---|---|---|
miscGetCompanySearch | GET /v1/misc/companysearch/{Keywords} | |
miscGetTranslation | GET /v1/misc/typecodes/{TypeCodeType}/{key} | |
miscGetTypeCodes | GET /v1/misc/typecodes/{TypeCodeType} |
\Swagger\Client\Model\CompanySearchResult miscGetCompanySearch($keywords)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Swagger\Client\Api\MiscApi(
// 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()
);
$keywords = "keywords_example"; // string |
try {
$result = $apiInstance->miscGetCompanySearch($keywords);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MiscApi->miscGetCompanySearch: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
keywords | string |
\Swagger\Client\Model\CompanySearchResult
No authorization required
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\TypeCodeResult miscGetTranslation($type_code_type, $key)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Swagger\Client\Api\MiscApi(
// 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()
);
$type_code_type = "type_code_type_example"; // string |
$key = "key_example"; // string |
try {
$result = $apiInstance->miscGetTranslation($type_code_type, $key);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MiscApi->miscGetTranslation: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
type_code_type | string | ||
key | string |
\Swagger\Client\Model\TypeCodeResult
No authorization required
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\TypeCodeResult miscGetTypeCodes($type_code_type)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Swagger\Client\Api\MiscApi(
// 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()
);
$type_code_type = "type_code_type_example"; // string |
try {
$result = $apiInstance->miscGetTypeCodes($type_code_type);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MiscApi->miscGetTypeCodes: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
type_code_type | string |
\Swagger\Client\Model\TypeCodeResult
No authorization required
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]