All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| GetAppStoreApp | GET /api/v1.0/appstore/apps/{appStoreAppId} | |
| GetAppStoreApps | GET /api/v1.0/appstore/apps |
RestApiResultAppStoreApp GetAppStoreApp (string appStoreAppId, string appId = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetAppStoreAppExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreApi();
var appStoreAppId = appStoreAppId_example; // string |
var appId = appId_example; // string | (optional)
try
{
RestApiResultAppStoreApp result = apiInstance.GetAppStoreApp(appStoreAppId, appId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreApi.GetAppStoreApp: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appStoreAppId | string | ||
| appId | string | [optional] |
- 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]
RestApiPaginationResultAppStoreAppSummary GetAppStoreApps (string search, int? page = null, int? limit = null, bool? excludeNotOwned = null, bool? showOnlyVerified = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetAppStoreAppsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new AppStoreApi();
var search = search_example; // string |
var page = 56; // int? | (optional)
var limit = 56; // int? | (optional)
var excludeNotOwned = true; // bool? | (optional)
var showOnlyVerified = true; // bool? | (optional)
try
{
RestApiPaginationResultAppStoreAppSummary result = apiInstance.GetAppStoreApps(search, page, limit, excludeNotOwned, showOnlyVerified);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AppStoreApi.GetAppStoreApps: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| search | string | ||
| page | int? | [optional] | |
| limit | int? | [optional] | |
| excludeNotOwned | bool? | [optional] | |
| showOnlyVerified | bool? | [optional] |
RestApiPaginationResultAppStoreAppSummary
- 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]