All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| appStoreConfigurationsAppStoreHandleOauthResponseCode | GET /api/v1.0/appstore/oauthresponse/{appStoreAppId}/responsecode | |
| createAppStoreConfig | POST /api/v1.0/{appId}/appstore/apps/{appStoreAppId}/config | |
| deleteAppStoreConfig | DELETE /api/v1.0/{appId}/appstore/apps/{appStoreAppId}/config/{configId} | |
| executeConfigurationAction | POST /api/v1.0/{appId}/appstore/apps/{appStoreAppId}/config/{configId}/action | |
| getAppStoreConfig | GET /api/v1.0/{appId}/appstore/apps/{appStoreAppId}/config/{configId} | |
| getConfiguredAppSingleApp | GET /api/v1.0/{appId}/appstore/apps/{appStoreAppId} | |
| getConfiguredApps | GET /api/v1.0/{appId}/appstore/apps | |
| updateAppStoreConfig | PUT /api/v1.0/{appId}/appstore/apps/{appStoreAppId}/config/{configId} | |
| updateAppStoreConfigSettingValues | POST /api/v1.0/{appId}/appstore/apps/{appStoreAppId}/config/{configId}/updatesettings |
object appStoreConfigurationsAppStoreHandleOauthResponseCode($app_store_app_id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_store_app_id = "app_store_app_id_example"; // string |
try {
$result = $apiInstance->appStoreConfigurationsAppStoreHandleOauthResponseCode($app_store_app_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->appStoreConfigurationsAppStoreHandleOauthResponseCode: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_store_app_id | string |
object
- 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]
\Flipdish\Client\Models\RestApiResultAppStoreAppConfiguration createAppStoreConfig($app_id, $app_store_app_id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_id = "app_id_example"; // string |
$app_store_app_id = "app_store_app_id_example"; // string |
try {
$result = $apiInstance->createAppStoreConfig($app_id, $app_store_app_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->createAppStoreConfig: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_id | string | ||
| app_store_app_id | string |
\Flipdish\Client\Models\RestApiResultAppStoreAppConfiguration
- 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]
\Flipdish\Client\Models\RestApiStringResult deleteAppStoreConfig($app_id, $app_store_app_id, $config_id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_id = "app_id_example"; // string |
$app_store_app_id = "app_store_app_id_example"; // string |
$config_id = "config_id_example"; // string |
try {
$result = $apiInstance->deleteAppStoreConfig($app_id, $app_store_app_id, $config_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->deleteAppStoreConfig: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_id | string | ||
| app_store_app_id | string | ||
| config_id | string |
\Flipdish\Client\Models\RestApiStringResult
- 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]
\Flipdish\Client\Models\RestApiResultExecuteConfigurationActionResult executeConfigurationAction($app_id, $app_store_app_id, $config_id, $execute_configuration_action_request)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_id = "app_id_example"; // string |
$app_store_app_id = "app_store_app_id_example"; // string |
$config_id = "config_id_example"; // string |
$execute_configuration_action_request = new \Flipdish\\Client\Models\ExecuteConfigurationActionRequest(); // \Flipdish\\Client\Models\ExecuteConfigurationActionRequest |
try {
$result = $apiInstance->executeConfigurationAction($app_id, $app_store_app_id, $config_id, $execute_configuration_action_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->executeConfigurationAction: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_id | string | ||
| app_store_app_id | string | ||
| config_id | string | ||
| execute_configuration_action_request | \Flipdish\Client\Models\ExecuteConfigurationActionRequest |
\Flipdish\Client\Models\RestApiResultExecuteConfigurationActionResult
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Flipdish\Client\Models\RestApiResultAppStoreAppConfiguration getAppStoreConfig($app_id, $app_store_app_id, $config_id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_id = "app_id_example"; // string |
$app_store_app_id = "app_store_app_id_example"; // string |
$config_id = "config_id_example"; // string |
try {
$result = $apiInstance->getAppStoreConfig($app_id, $app_store_app_id, $config_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->getAppStoreConfig: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_id | string | ||
| app_store_app_id | string | ||
| config_id | string |
\Flipdish\Client\Models\RestApiResultAppStoreAppConfiguration
- 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]
\Flipdish\Client\Models\RestApiArrayResultAppStoreAppConfigurationSummary getConfiguredAppSingleApp($app_id, $app_store_app_id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_id = "app_id_example"; // string |
$app_store_app_id = "app_store_app_id_example"; // string |
try {
$result = $apiInstance->getConfiguredAppSingleApp($app_id, $app_store_app_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->getConfiguredAppSingleApp: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_id | string | ||
| app_store_app_id | string |
\Flipdish\Client\Models\RestApiArrayResultAppStoreAppConfigurationSummary
- 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]
\Flipdish\Client\Models\RestApiArrayResultAppStoreAppSummary getConfiguredApps($app_id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_id = "app_id_example"; // string |
try {
$result = $apiInstance->getConfiguredApps($app_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->getConfiguredApps: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_id | string |
\Flipdish\Client\Models\RestApiArrayResultAppStoreAppSummary
- 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]
updateAppStoreConfig($app_id, $app_store_app_id, $config_id, $update_app_store_app_configuration)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_id = "app_id_example"; // string |
$app_store_app_id = "app_store_app_id_example"; // string |
$config_id = "config_id_example"; // string |
$update_app_store_app_configuration = new \Flipdish\\Client\Models\UpdateAppStoreAppConfiguration(); // \Flipdish\\Client\Models\UpdateAppStoreAppConfiguration |
try {
$apiInstance->updateAppStoreConfig($app_id, $app_store_app_id, $config_id, $update_app_store_app_configuration);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->updateAppStoreConfig: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_id | string | ||
| app_store_app_id | string | ||
| config_id | string | ||
| update_app_store_app_configuration | \Flipdish\Client\Models\UpdateAppStoreAppConfiguration |
void (empty response body)
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updateAppStoreConfigSettingValues($app_id, $app_store_app_id, $config_id, $update_app_store_app_configuration_values)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Flipdish\\Client\Api\AppStoreConfigurationsApi(
// 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
);
$app_id = "app_id_example"; // string |
$app_store_app_id = "app_store_app_id_example"; // string |
$config_id = "config_id_example"; // string |
$update_app_store_app_configuration_values = new \Flipdish\\Client\Models\UpdateAppStoreAppConfigurationValuesBatch(); // \Flipdish\\Client\Models\UpdateAppStoreAppConfigurationValuesBatch |
try {
$apiInstance->updateAppStoreConfigSettingValues($app_id, $app_store_app_id, $config_id, $update_app_store_app_configuration_values);
} catch (Exception $e) {
echo 'Exception when calling AppStoreConfigurationsApi->updateAppStoreConfigSettingValues: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| app_id | string | ||
| app_store_app_id | string | ||
| config_id | string | ||
| update_app_store_app_configuration_values | \Flipdish\Client\Models\UpdateAppStoreAppConfigurationValuesBatch |
void (empty response body)
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]