All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| DisableFeatures | POST /api/v1.0/{appId}/features/disable | |
| EnableFeatures | POST /api/v1.0/{appId}/features/enable |
RestApiStringArrayResult DisableFeatures (string appId, List features)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DisableFeaturesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new FeaturesApi();
var appId = appId_example; // string |
var features = ; // List<string> |
try
{
RestApiStringArrayResult result = apiInstance.DisableFeatures(appId, features);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling FeaturesApi.DisableFeatures: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| features | List<string> |
- 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]
RestApiStringArrayResult EnableFeatures (string appId, List features)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class EnableFeaturesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new FeaturesApi();
var appId = appId_example; // string |
var features = ; // List<string> |
try
{
RestApiStringArrayResult result = apiInstance.EnableFeatures(appId, features);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling FeaturesApi.EnableFeatures: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| features | List<string> |
- 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]