All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
companyDestroy | POST /companies/destroy | |
companySignup | POST /companies/signup | |
createCompany | POST /companies/create | |
favoritesList | POST /favorites/list | |
favoritesUpdate | POST /favorites/update | |
inviteUsers | POST /inviteUsers | |
permissionGroupsList | POST /permissionGroups/list | |
permissionGroupsUpdate | POST /permissionGroups/update | |
streamTaskProgress | POST /streamTaskProgress |
\Alfaview\Model\BusinessLogicServiceCompanyDestroyReply companyDestroy($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceCompanyDestroyRequest(); // \Alfaview\Model\BusinessLogicServiceCompanyDestroyRequest | * CompanyDestroyRequest is used to completely destroy a company and all associated data via a gokju task.
try {
$result = $apiInstance->companyDestroy($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->companyDestroy: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceCompanyDestroyRequest | * CompanyDestroyRequest is used to completely destroy a company and all associated data via a gokju task. |
\Alfaview\Model\BusinessLogicServiceCompanyDestroyReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\BusinessLogicServiceCompanySignupReply companySignup($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceCompanySignupRequest(); // \Alfaview\Model\BusinessLogicServiceCompanySignupRequest | * A CompanySignupRequest is used for regular sign-ups. It can be called by anyone and does not require an access token.
try {
$result = $apiInstance->companySignup($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->companySignup: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceCompanySignupRequest | * A CompanySignupRequest is used for regular sign-ups. It can be called by anyone and does not require an access token. |
\Alfaview\Model\BusinessLogicServiceCompanySignupReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\BusinessLogicServiceCompanyCreateReply createCompany($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceCompanyCreateRequest(); // \Alfaview\Model\BusinessLogicServiceCompanyCreateRequest | * A CompanyCreateRequest is used internally via the admin web app to create a company with a user profile and a single room attached to it. It requires the COMPANY_ADMIN backend permission.
try {
$result = $apiInstance->createCompany($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->createCompany: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceCompanyCreateRequest | * A CompanyCreateRequest is used internally via the admin web app to create a company with a user profile and a single room attached to it. It requires the COMPANY_ADMIN backend permission. |
\Alfaview\Model\BusinessLogicServiceCompanyCreateReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\BusinessLogicServiceFavoritesListReply favoritesList($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceFavoritesListRequest(); // \Alfaview\Model\BusinessLogicServiceFavoritesListRequest |
try {
$result = $apiInstance->favoritesList($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->favoritesList: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceFavoritesListRequest |
\Alfaview\Model\BusinessLogicServiceFavoritesListReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\BusinessLogicServiceFavoritesUpdateReply favoritesUpdate($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceFavoritesUpdateRequest(); // \Alfaview\Model\BusinessLogicServiceFavoritesUpdateRequest |
try {
$result = $apiInstance->favoritesUpdate($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->favoritesUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceFavoritesUpdateRequest |
\Alfaview\Model\BusinessLogicServiceFavoritesUpdateReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\BusinessLogicServiceInviteUsersReply inviteUsers($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceInviteUsersRequest(); // \Alfaview\Model\BusinessLogicServiceInviteUsersRequest | * Use InviteUsersRequest to invite a list of users and assign them their permissions.
try {
$result = $apiInstance->inviteUsers($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->inviteUsers: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceInviteUsersRequest | * Use InviteUsersRequest to invite a list of users and assign them their permissions. |
\Alfaview\Model\BusinessLogicServiceInviteUsersReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsListReply permissionGroupsList($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsListRequest(); // \Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsListRequest |
try {
$result = $apiInstance->permissionGroupsList($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->permissionGroupsList: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsListRequest |
\Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsListReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsUpdateReply permissionGroupsUpdate($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsUpdateRequest(); // \Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsUpdateRequest |
try {
$result = $apiInstance->permissionGroupsUpdate($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->permissionGroupsUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsUpdateRequest |
\Alfaview\Model\BusinessLogicServiceCompanyPermissionGroupsUpdateReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\StreamResultOfBusinessLogicServiceTaskProgressReply streamTaskProgress($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\BusinessLogicServiceApi(
// 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 \Alfaview\Model\BusinessLogicServiceTaskProgressRequest(); // \Alfaview\Model\BusinessLogicServiceTaskProgressRequest | * Use TaskProgressRequest to request the progress report of a task by its ID.
try {
$result = $apiInstance->streamTaskProgress($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BusinessLogicServiceApi->streamTaskProgress: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\BusinessLogicServiceTaskProgressRequest | * Use TaskProgressRequest to request the progress report of a task by its ID. |
\Alfaview\Model\StreamResultOfBusinessLogicServiceTaskProgressReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]