All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| CompleteHomeAction | POST /api/v1.0/{appId}/home/{homeActionId} | |
| GetHomeActions | GET /api/v1.0/{appId}/home | |
| GetHomeStatistics | GET /api/v1.0/{appId}/home/stats | |
| GetOktaPortalFeatureFlag | GET /api/v1.0/home/okta-portal |
Object CompleteHomeAction (string appId, int? homeActionId, bool? isDismissed)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class CompleteHomeActionExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HomeApi();
var appId = appId_example; // string |
var homeActionId = 56; // int? |
var isDismissed = true; // bool? |
try
{
Object result = apiInstance.CompleteHomeAction(appId, homeActionId, isDismissed);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HomeApi.CompleteHomeAction: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| homeActionId | int? | ||
| isDismissed | bool? |
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]
RestApiArrayResultHomeAction GetHomeActions (string appId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetHomeActionsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HomeApi();
var appId = appId_example; // string |
try
{
RestApiArrayResultHomeAction result = apiInstance.GetHomeActions(appId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HomeApi.GetHomeActions: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | 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]
RestApiResultHomeStatistics GetHomeStatistics (string appId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetHomeStatisticsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HomeApi();
var appId = appId_example; // string |
try
{
RestApiResultHomeStatistics result = apiInstance.GetHomeStatistics(appId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HomeApi.GetHomeStatistics: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | 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]
RestApiResultOktaPortalFeatureFlag GetOktaPortalFeatureFlag ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetOktaPortalFeatureFlagExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HomeApi();
try
{
RestApiResultOktaPortalFeatureFlag result = apiInstance.GetOktaPortalFeatureFlag();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HomeApi.GetOktaPortalFeatureFlag: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
RestApiResultOktaPortalFeatureFlag
- 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]