All URIs are relative to http://localhost, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
billingAccountRestGetaccountPost() | POST /billing/account/rest/getaccount | |
billingAccountRestGetextendedaccountbillinghistorybyperiodPost() | POST /billing/account/rest/getextendedaccountbillinghistorybyperiod | |
billingAccountRestGetquotasPost() | POST /billing/account/rest/getquotas | |
usersAccountRestGetuserinfoPost() | POST /users/account/rest/getuserinfo | |
usersAccountRestRecoverpasswordPost() | POST /users/account/rest/recoverpassword |
billingAccountRestGetaccountPost(): \OpenAPI\Client\Model\ComHivextApiServerBillingResponseAccountResponse
Gets account by session.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AccountServiceApi(
// 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()
);
try {
$result = $apiInstance->billingAccountRestGetaccountPost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AccountServiceApi->billingAccountRestGetaccountPost: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\OpenAPI\Client\Model\ComHivextApiServerBillingResponseAccountResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
billingAccountRestGetextendedaccountbillinghistorybyperiodPost($endtime, $starttime, $targetAppid): \OpenAPI\Client\Model\ComHivextApiServerEnvironmentResponseObjectResponse
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AccountServiceApi(
// 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()
);
$endtime = 'endtime_example'; // string
$starttime = 'starttime_example'; // string
$targetAppid = 'targetAppid_example'; // string
try {
$result = $apiInstance->billingAccountRestGetextendedaccountbillinghistorybyperiodPost($endtime, $starttime, $targetAppid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AccountServiceApi->billingAccountRestGetextendedaccountbillinghistorybyperiodPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
endtime | string | ||
starttime | string | ||
targetAppid | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerEnvironmentResponseObjectResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
billingAccountRestGetquotasPost($quotasnames): \OpenAPI\Client\Model\ComHivextApiServerBillingResponseArrayResponse
Gets list of quotas for account.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AccountServiceApi(
// 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()
);
$quotasnames = 'quotasnames_example'; // string
try {
$result = $apiInstance->billingAccountRestGetquotasPost($quotasnames);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AccountServiceApi->billingAccountRestGetquotasPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
quotasnames | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerBillingResponseArrayResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
usersAccountRestGetuserinfoPost(): \OpenAPI\Client\Model\ComHivextApiServerUsersResponseAuthenticationResponse
Gets information about the user.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AccountServiceApi(
// 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()
);
try {
$result = $apiInstance->usersAccountRestGetuserinfoPost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AccountServiceApi->usersAccountRestGetuserinfoPost: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\OpenAPI\Client\Model\ComHivextApiServerUsersResponseAuthenticationResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
usersAccountRestRecoverpasswordPost($email, $lang): \OpenAPI\Client\Model\ComHivextApiResponse
Sends an email with the link to reset the account password
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AccountServiceApi(
// 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()
);
$email = 'email_example'; // string
$lang = 'lang_example'; // string
try {
$result = $apiInstance->usersAccountRestRecoverpasswordPost($email, $lang);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AccountServiceApi->usersAccountRestRecoverpasswordPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
string | |||
lang | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]