All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| appsSetPropertyId | POST /api/v1.0/apps/{appId}/orgId/{orgId} | |
| createApp | POST /api/v1.0/apps | |
| getApp | GET /api/v1.0/apps/{appId} | |
| getAppHostnameStatus | GET /api/v1.0/apps/{appId}/hostnamestatus | |
| getAppName | GET /api/v1.0/apps/{appId}/name | |
| getApps | GET /api/v1.0/apps | |
| getCompliance | GET /api/v1.0/apps/{appId}/compliance | |
| getPanaceaVanityUrl | GET /api/v1.0/apps/{appId}/panacea/url | |
| getSupportedCountries | GET /api/v1.0/apps/supportedcountries | |
| isPanaceaVanityUrlAvailable | GET /api/v1.0/apps/{appId}/panacea/url/available | |
| lookupByWhitelabelId | GET /api/v1.0/apps/{whitelabelId}/lookup | |
| sendPushNotification | POST /api/v1.0/apps/{appId}/SendPushNotification/{customerId} | |
| setAppConfig | POST /api/v1.0/apps/{appId}/config | |
| setAppHostname | POST /api/v1.0/apps/{appId}/hostname | |
| setAppLanguages | POST /api/v1.0/apps/{appId}/config/languages | |
| setAppStoreName | POST /api/v1.0/apps/{appId}/appstorename | |
| setCompliance | POST /api/v1.0/apps/{appId}/compliance | |
| setPanaceaVanityUrl | POST /api/v1.0/apps/{appId}/panacea/url | |
| toggleNextGenWeb | POST /api/v1.0/apps/{appId}/nextgenweb | |
| uploadAppLogo | POST /api/v1.0/apps/{appId}/logo |
Object appsSetPropertyId(appId, orgId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
String orgId = "orgId_example"; // String |
try {
Object result = apiInstance.appsSetPropertyId(appId, orgId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#appsSetPropertyId");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| orgId | String |
Object
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiStringResult createApp(parameters)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
CreateAppParameters parameters = new CreateAppParameters(); // CreateAppParameters |
try {
RestApiStringResult result = apiInstance.createApp(parameters);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#createApp");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| parameters | CreateAppParameters |
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultApp getApp(appId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
try {
RestApiResultApp result = apiInstance.getApp(appId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#getApp");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultDnsRecordInformation getAppHostnameStatus(appId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
try {
RestApiResultDnsRecordInformation result = apiInstance.getAppHostnameStatus(appId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#getAppHostnameStatus");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String |
RestApiResultDnsRecordInformation
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiStringResult getAppName(appId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
try {
RestApiStringResult result = apiInstance.getAppName(appId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#getAppName");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiPaginationResultApp getApps(nameFilter, page, limit)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String nameFilter = "nameFilter_example"; // String |
Integer page = 56; // Integer |
Integer limit = 56; // Integer |
try {
RestApiPaginationResultApp result = apiInstance.getApps(nameFilter, page, limit);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#getApps");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| nameFilter | String | [optional] | |
| page | Integer | [optional] | |
| limit | Integer | [optional] |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultAppCompliance getCompliance(appId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
try {
RestApiResultAppCompliance result = apiInstance.getCompliance(appId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#getCompliance");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiStringResult getPanaceaVanityUrl(appId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
try {
RestApiStringResult result = apiInstance.getPanaceaVanityUrl(appId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#getPanaceaVanityUrl");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiArrayResultSupportedCountry getSupportedCountries()
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
try {
RestApiArrayResultSupportedCountry result = apiInstance.getSupportedCountries();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#getSupportedCountries");
e.printStackTrace();
}This endpoint does not need any parameter.
RestApiArrayResultSupportedCountry
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiStringResult isPanaceaVanityUrlAvailable(vanityUrl, appId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String vanityUrl = "vanityUrl_example"; // String |
String appId = "appId_example"; // String |
try {
RestApiStringResult result = apiInstance.isPanaceaVanityUrlAvailable(vanityUrl, appId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#isPanaceaVanityUrlAvailable");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| vanityUrl | String | ||
| appId | String |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
AppLookup lookupByWhitelabelId(whitelabelId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
Integer whitelabelId = 56; // Integer |
try {
AppLookup result = apiInstance.lookupByWhitelabelId(whitelabelId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#lookupByWhitelabelId");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| whitelabelId | Integer |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
sendPushNotification(appId, customerId, message)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
Integer customerId = 56; // Integer |
String message = "message_example"; // String |
try {
apiInstance.sendPushNotification(appId, customerId, message);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#sendPushNotification");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| customerId | Integer | ||
| message | String |
null (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
RestApiResultApp setAppConfig(appId, appConfigUpdate)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
AppConfigUpdateModel appConfigUpdate = new AppConfigUpdateModel(); // AppConfigUpdateModel |
try {
RestApiResultApp result = apiInstance.setAppConfig(appId, appConfigUpdate);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#setAppConfig");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| appConfigUpdate | AppConfigUpdateModel |
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
RestApiStringResult setAppHostname(appId, hostname, isEmbed)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
String hostname = "hostname_example"; // String |
Boolean isEmbed = true; // Boolean |
try {
RestApiStringResult result = apiInstance.setAppHostname(appId, hostname, isEmbed);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#setAppHostname");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| hostname | String | ||
| isEmbed | Boolean | [optional] |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultApp setAppLanguages(appId, languages)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
List<Language> languages = Arrays.asList(new Language()); // List<Language> |
try {
RestApiResultApp result = apiInstance.setAppLanguages(appId, languages);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#setAppLanguages");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| languages | List<Language> |
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
setAppStoreName(appId, appStoreName)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
String appStoreName = "appStoreName_example"; // String |
try {
apiInstance.setAppStoreName(appId, appStoreName);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#setAppStoreName");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| appStoreName | String |
null (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
RestApiResultAppCompliance setCompliance(appId, complianceType)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
String complianceType = "complianceType_example"; // String |
try {
RestApiResultAppCompliance result = apiInstance.setCompliance(appId, complianceType);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#setCompliance");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| complianceType | String | [enum: Default, GdprCompliance] |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiStringResult setPanaceaVanityUrl(appId, vanityUrl)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
String vanityUrl = "vanityUrl_example"; // String |
try {
RestApiStringResult result = apiInstance.setPanaceaVanityUrl(appId, vanityUrl);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#setPanaceaVanityUrl");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| vanityUrl | String |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiStringResult toggleNextGenWeb(appId, hostname, vanityUrl, isNextGenWeb)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
String hostname = "hostname_example"; // String |
String vanityUrl = "vanityUrl_example"; // String |
Boolean isNextGenWeb = true; // Boolean |
try {
RestApiStringResult result = apiInstance.toggleNextGenWeb(appId, hostname, vanityUrl, isNextGenWeb);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#toggleNextGenWeb");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| hostname | String | ||
| vanityUrl | String | ||
| isNextGenWeb | Boolean |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
uploadAppLogo(appId, image)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.AppsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
AppsApi apiInstance = new AppsApi();
String appId = "appId_example"; // String |
File image = new File("/path/to/file.txt"); // File | App Logo
try {
apiInstance.uploadAppLogo(appId, image);
} catch (ApiException e) {
System.err.println("Exception when calling AppsApi#uploadAppLogo");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| image | File | App Logo |
null (empty response body)
- Content-Type: multipart/form-data
- Accept: application/json, text/json, application/xml, text/xml