Skip to content

Latest commit

 

History

History
142 lines (106 loc) · 4.1 KB

File metadata and controls

142 lines (106 loc) · 4.1 KB

Flipdish.Api.AppStoreApi

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

GetAppStoreApp

RestApiResultAppStoreApp GetAppStoreApp (string appStoreAppId, string appId = null)

Example

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 );
            }
        }
    }
}

Parameters

Name Type Description Notes
appStoreAppId string
appId string [optional]

Return type

RestApiResultAppStoreApp

Authorization

oauth2

HTTP request headers

  • 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]

GetAppStoreApps

RestApiPaginationResultAppStoreAppSummary GetAppStoreApps (string search, int? page = null, int? limit = null, bool? excludeNotOwned = null, bool? showOnlyVerified = null)

Example

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 );
            }
        }
    }
}

Parameters

Name Type Description Notes
search string
page int? [optional]
limit int? [optional]
excludeNotOwned bool? [optional]
showOnlyVerified bool? [optional]

Return type

RestApiPaginationResultAppStoreAppSummary

Authorization

oauth2

HTTP request headers

  • 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]