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 (string appStoreAppId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class AppStoreConfigurationsAppStoreHandleOauthResponseCodeExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appStoreAppId = appStoreAppId_example; // string |
try
{
Object result = apiInstance.AppStoreConfigurationsAppStoreHandleOauthResponseCode(appStoreAppId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.AppStoreConfigurationsAppStoreHandleOauthResponseCode: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appStoreAppId | 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]
RestApiResultAppStoreAppConfiguration CreateAppStoreConfig (string appId, string appStoreAppId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class CreateAppStoreConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appId = appId_example; // string |
var appStoreAppId = appStoreAppId_example; // string |
try
{
RestApiResultAppStoreAppConfiguration result = apiInstance.CreateAppStoreConfig(appId, appStoreAppId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.CreateAppStoreConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| appStoreAppId | string |
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]
RestApiStringResult DeleteAppStoreConfig (string appId, string appStoreAppId, string configId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DeleteAppStoreConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appId = appId_example; // string |
var appStoreAppId = appStoreAppId_example; // string |
var configId = configId_example; // string |
try
{
RestApiStringResult result = apiInstance.DeleteAppStoreConfig(appId, appStoreAppId, configId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.DeleteAppStoreConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| appStoreAppId | string | ||
| configId | string |
- 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]
RestApiResultExecuteConfigurationActionResult ExecuteConfigurationAction (string appId, string appStoreAppId, string configId, ExecuteConfigurationActionRequest executeConfigurationActionRequest)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class ExecuteConfigurationActionExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appId = appId_example; // string |
var appStoreAppId = appStoreAppId_example; // string |
var configId = configId_example; // string |
var executeConfigurationActionRequest = new ExecuteConfigurationActionRequest(); // ExecuteConfigurationActionRequest |
try
{
RestApiResultExecuteConfigurationActionResult result = apiInstance.ExecuteConfigurationAction(appId, appStoreAppId, configId, executeConfigurationActionRequest);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.ExecuteConfigurationAction: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| appStoreAppId | string | ||
| configId | string | ||
| executeConfigurationActionRequest | ExecuteConfigurationActionRequest |
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]
RestApiResultAppStoreAppConfiguration GetAppStoreConfig (string appId, string appStoreAppId, string configId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetAppStoreConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appId = appId_example; // string |
var appStoreAppId = appStoreAppId_example; // string |
var configId = configId_example; // string |
try
{
RestApiResultAppStoreAppConfiguration result = apiInstance.GetAppStoreConfig(appId, appStoreAppId, configId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.GetAppStoreConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| appStoreAppId | string | ||
| configId | string |
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]
RestApiArrayResultAppStoreAppConfigurationSummary GetConfiguredAppSingleApp (string appId, string appStoreAppId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetConfiguredAppSingleAppExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appId = appId_example; // string |
var appStoreAppId = appStoreAppId_example; // string |
try
{
RestApiArrayResultAppStoreAppConfigurationSummary result = apiInstance.GetConfiguredAppSingleApp(appId, appStoreAppId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.GetConfiguredAppSingleApp: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| appStoreAppId | string |
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]
RestApiArrayResultAppStoreAppSummary GetConfiguredApps (string appId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetConfiguredAppsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appId = appId_example; // string |
try
{
RestApiArrayResultAppStoreAppSummary result = apiInstance.GetConfiguredApps(appId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.GetConfiguredApps: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string |
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]
void UpdateAppStoreConfig (string appId, string appStoreAppId, string configId, UpdateAppStoreAppConfiguration updateAppStoreAppConfiguration)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdateAppStoreConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appId = appId_example; // string |
var appStoreAppId = appStoreAppId_example; // string |
var configId = configId_example; // string |
var updateAppStoreAppConfiguration = new UpdateAppStoreAppConfiguration(); // UpdateAppStoreAppConfiguration |
try
{
apiInstance.UpdateAppStoreConfig(appId, appStoreAppId, configId, updateAppStoreAppConfiguration);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.UpdateAppStoreConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| appStoreAppId | string | ||
| configId | string | ||
| updateAppStoreAppConfiguration | 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]
void UpdateAppStoreConfigSettingValues (string appId, string appStoreAppId, string configId, UpdateAppStoreAppConfigurationValuesBatch updateAppStoreAppConfigurationValues)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdateAppStoreConfigSettingValuesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreConfigurationsApi();
var appId = appId_example; // string |
var appStoreAppId = appStoreAppId_example; // string |
var configId = configId_example; // string |
var updateAppStoreAppConfigurationValues = new UpdateAppStoreAppConfigurationValuesBatch(); // UpdateAppStoreAppConfigurationValuesBatch |
try
{
apiInstance.UpdateAppStoreConfigSettingValues(appId, appStoreAppId, configId, updateAppStoreAppConfigurationValues);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreConfigurationsApi.UpdateAppStoreConfigSettingValues: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| appStoreAppId | string | ||
| configId | string | ||
| updateAppStoreAppConfigurationValues | 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]