All URIs are relative to https://api.billingo.hu/v3
Method | HTTP request | Description |
---|---|---|
getOrganizationData | GET /organization | Retrieve a organization data. |
\Swagger\Client\Model\OrganizationData getOrganizationData()
Retrieve a organization data.
Retrieves the data of organization.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('X-API-KEY', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-KEY', 'Bearer');
$apiInstance = new Swagger\Client\Api\OrganizationApi(
// 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
);
try {
$result = $apiInstance->getOrganizationData();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling OrganizationApi->getOrganizationData: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
\Swagger\Client\Model\OrganizationData
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]