All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| ArchiveStore | POST /api/v1.0/stores/{storeId}/archive | |
| AssignMenu | POST /api/v1.0/stores/{storeId}/menu/{menuId} | |
| CloneStore | POST /api/v1.0/stores/{storeId}/clone | |
| ConfigureStoreServiceCharge | POST /api/v1.0/stores/{storeId}/servicecharge | |
| CreateBusinessHoursOverrideByStoreId | POST /api/v1.0/stores/{storeId}/businesshoursoverrides | |
| CreateStore | POST /api/v1.0/stores | |
| CreateStoreInProperty | POST /api/v1.0/properties/{propertyId}/stores | |
| DeleteBusinessHoursOverride | DELETE /api/v1.0/stores/{storeId}/businesshoursoverrides/{businessHoursOverrideId} | |
| GetBankAccountForStore | GET /api/v1.0/stores/{storeId}/bankaccount | |
| GetBusinessHours | GET /api/v1.0/stores/{storeId}/availability/{deliveryType} | |
| GetBusinessHoursOverrideByStoreId | GET /api/v1.0/stores/{storeId}/businesshoursoverrides | |
| GetEndOfDayReport | GET /api/v1.0/stores/{storeId}/endofdayreport | |
| GetPreOrderConfig | GET /api/v1.0/stores/{storeId}/preorderconfig/{deliveryType} | |
| GetPreOrderPreview | GET /api/v1.0/stores/{storeId}/preorderconfig/{deliveryType}/preview | |
| GetProcessingFeeConfigsByStoreId | GET /api/v1.0/stores/{storeId}/processingfeeconfigs | |
| GetProcessingFeeConfigsByStoreIdAndPaymentAccountType | GET /api/v1.0/stores/{storeId}/processingfeeconfigs/{paymentAccountType} | |
| GetStoreById | GET /api/v1.0/stores/{storeId} | |
| GetStoreDeliveryFeeConfig | GET /api/v1.0/stores/{storeId}/feeConfig/deliveryZones | |
| GetStoreFeeConfig | GET /api/v1.0/stores/{storeId}/feeConfig | |
| GetStoreHeadersByAppId | GET /api/v1.0/{appId}/stores/header | |
| GetStoreLeadTimes | GET /api/v1.0/stores/{storeId}/leadTimes | |
| GetStoreNetSales | GET /api/v1.0/{appId}/stores/stats | |
| GetStoreServiceCharge | GET /api/v1.0/stores/{storeId}/servicecharge | |
| GetStores | GET /api/v1.0/stores | |
| GetStoresByAppId | GET /api/v1.0/{appId}/stores | |
| GetStoresByStoreIdWithValidations | GET /api/v1.0/{appId}/storevalidation/kiosk | |
| PublishStore | POST /api/v1.0/stores/{storeId}/publish | |
| PutStoreDeliveryFeeConfig | PUT /api/v1.0/stores/{storeId}/feeConfig/deliveryZones | |
| SetBusinessHours | POST /api/v1.0/stores/{storeId}/availability/{deliveryType} | |
| SetPreOrdeEnabled | POST /api/v1.0/stores/{storeId}/preorderconfig/{deliveryType}/enabled | |
| SetStoreCollectionSettings | POST /api/v1.0/stores/{storeId}/collectionsettings | |
| SetStoreLeadTimes | POST /api/v1.0/stores/{storeId}/leadTimes | |
| StoresSetPropertyId | POST /api/v1.0/stores/{storeId}/propertyId/{propertyId} | |
| SupportedSalesChannelsTypes | POST /api/v1.0/properties/{propertyId}/stores/{storeId}/supportedSalesChannels | |
| UnpublishStore | POST /api/v1.0/stores/{storeId}/unpublish | |
| UpdatePreOrderConfig | POST /api/v1.0/stores/{storeId}/preorderconfig/{deliveryType} | |
| UpdateStore | POST /api/v1.0/stores/{storeId} | |
| UpdateStoreAddress | POST /api/v1.0/stores/{storeId}/address | |
| UpdateStoreAddressCoordinates | POST /api/v1.0/stores/{storeId}/address/coordinates | |
| UpdateStoreAddressForm | POST /api/v1.0/stores/{storeId}/addressform |
void ArchiveStore (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class ArchiveStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
apiInstance.ArchiveStore(storeId);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.ArchiveStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
void (empty response body)
- 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]
RestApiArrayResultRestApiDefaultResponse AssignMenu (int? storeId, int? menuId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class AssignMenuExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var menuId = 56; // int? |
try
{
RestApiArrayResultRestApiDefaultResponse result = apiInstance.AssignMenu(storeId, menuId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.AssignMenu: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| menuId | int? |
RestApiArrayResultRestApiDefaultResponse
- 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]
RestApiResultStore CloneStore (int? storeId, StoreCloneSettings settings)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class CloneStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var settings = new StoreCloneSettings(); // StoreCloneSettings |
try
{
RestApiResultStore result = apiInstance.CloneStore(storeId, settings);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.CloneStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| settings | StoreCloneSettings |
- 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]
RestApiResultServiceCharge ConfigureStoreServiceCharge (int? storeId, ServiceCharge serviceCharge)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class ConfigureStoreServiceChargeExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var serviceCharge = new ServiceCharge(); // ServiceCharge |
try
{
RestApiResultServiceCharge result = apiInstance.ConfigureStoreServiceCharge(storeId, serviceCharge);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.ConfigureStoreServiceCharge: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| serviceCharge | ServiceCharge |
- 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]
RestApiResultBusinessHoursOverride CreateBusinessHoursOverrideByStoreId (int? storeId, BusinessHoursOverrideBase businessHoursOverride)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class CreateBusinessHoursOverrideByStoreIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var businessHoursOverride = new BusinessHoursOverrideBase(); // BusinessHoursOverrideBase |
try
{
RestApiResultBusinessHoursOverride result = apiInstance.CreateBusinessHoursOverrideByStoreId(storeId, businessHoursOverride);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.CreateBusinessHoursOverrideByStoreId: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| businessHoursOverride | BusinessHoursOverrideBase |
RestApiResultBusinessHoursOverride
- 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]
RestApiResultStore CreateStore (int? storeGroupId, StoreCreateBase store)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class CreateStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeGroupId = 56; // int? |
var store = new StoreCreateBase(); // StoreCreateBase |
try
{
RestApiResultStore result = apiInstance.CreateStore(storeGroupId, store);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.CreateStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeGroupId | int? | ||
| store | StoreCreateBase |
- 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]
RestApiResultStore CreateStoreInProperty (int? storeGroupId, string propertyId, StoreCreateBase store, bool? autoAssignMenu = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class CreateStoreInPropertyExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeGroupId = 56; // int? |
var propertyId = propertyId_example; // string |
var store = new StoreCreateBase(); // StoreCreateBase |
var autoAssignMenu = true; // bool? | (optional)
try
{
RestApiResultStore result = apiInstance.CreateStoreInProperty(storeGroupId, propertyId, store, autoAssignMenu);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.CreateStoreInProperty: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeGroupId | int? | ||
| propertyId | string | ||
| store | StoreCreateBase | ||
| autoAssignMenu | bool? | [optional] |
- 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]
RestApiArrayResultRestApiDefaultResponse DeleteBusinessHoursOverride (int? storeId, int? businessHoursOverrideId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DeleteBusinessHoursOverrideExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var businessHoursOverrideId = 56; // int? |
try
{
RestApiArrayResultRestApiDefaultResponse result = apiInstance.DeleteBusinessHoursOverride(storeId, businessHoursOverrideId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.DeleteBusinessHoursOverride: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| businessHoursOverrideId | int? |
RestApiArrayResultRestApiDefaultResponse
- 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]
RestApiResultAssignedBankAccount GetBankAccountForStore (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetBankAccountForStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
RestApiResultAssignedBankAccount result = apiInstance.GetBankAccountForStore(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetBankAccountForStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
RestApiResultAssignedBankAccount
- 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]
RestApiArrayResultBusinessHoursPeriod GetBusinessHours (int? storeId, string deliveryType)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetBusinessHoursExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var deliveryType = deliveryType_example; // string |
try
{
RestApiArrayResultBusinessHoursPeriod result = apiInstance.GetBusinessHours(storeId, deliveryType);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetBusinessHours: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| deliveryType | string |
RestApiArrayResultBusinessHoursPeriod
- 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]
RestApiPaginationResultBusinessHoursOverride GetBusinessHoursOverrideByStoreId (int? storeId, DateTime? after = null, int? page = null, int? limit = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetBusinessHoursOverrideByStoreIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var after = 2013-10-20T19:20:30+01:00; // DateTime? | (optional)
var page = 56; // int? | (optional)
var limit = 56; // int? | (optional)
try
{
RestApiPaginationResultBusinessHoursOverride result = apiInstance.GetBusinessHoursOverrideByStoreId(storeId, after, page, limit);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetBusinessHoursOverrideByStoreId: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| after | DateTime? | [optional] | |
| page | int? | [optional] | |
| limit | int? | [optional] |
RestApiPaginationResultBusinessHoursOverride
- 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]
RestApiResultStoreEndOfDayReport GetEndOfDayReport (int? storeId, DateTime? date = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetEndOfDayReportExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var date = 2013-10-20T19:20:30+01:00; // DateTime? | (optional)
try
{
RestApiResultStoreEndOfDayReport result = apiInstance.GetEndOfDayReport(storeId, date);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetEndOfDayReport: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| date | DateTime? | [optional] |
RestApiResultStoreEndOfDayReport
- 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]
RestApiResultPreOrderConfig GetPreOrderConfig (int? storeId, string deliveryType)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetPreOrderConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var deliveryType = deliveryType_example; // string |
try
{
RestApiResultPreOrderConfig result = apiInstance.GetPreOrderConfig(storeId, deliveryType);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetPreOrderConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| deliveryType | 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]
RestApiArrayResultPreOrderTime GetPreOrderPreview (int? storeId, string deliveryType, int? preOrderConfigLeadTimeMinutes = null, int? preOrderConfigIntervalMinutes = null, int? preOrderConfigMaxOrderAheadDays = null, bool? preOrderConfigIncludeAsap = null, bool? preOrderConfigIncludeMoreGranularInitialTime = null, string preOrderConfigCutOffTimePreviousDayBasic = null, string preOrderConfigCutOffTimeCurrentDayBasic = null, string preOrderConfigPreOrderTimeDisplayType = null, bool? preOrderConfigAlwaysAppearOpen = null, bool? preOrderConfigRequireExplicitSelectAlways = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetPreOrderPreviewExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var deliveryType = deliveryType_example; // string |
var preOrderConfigLeadTimeMinutes = 56; // int? | Lead Time in Minutes (optional)
var preOrderConfigIntervalMinutes = 56; // int? | Interval in minutes (optional)
var preOrderConfigMaxOrderAheadDays = 56; // int? | Max Days to order ahead (optional)
var preOrderConfigIncludeAsap = true; // bool? | Show ASAP as option (optional)
var preOrderConfigIncludeMoreGranularInitialTime = true; // bool? | Granual Init' Time (optional)
var preOrderConfigCutOffTimePreviousDayBasic = preOrderConfigCutOffTimePreviousDayBasic_example; // string | Cut off time previous day (optional)
var preOrderConfigCutOffTimeCurrentDayBasic = preOrderConfigCutOffTimeCurrentDayBasic_example; // string | Cut off time current day (optional)
var preOrderConfigPreOrderTimeDisplayType = preOrderConfigPreOrderTimeDisplayType_example; // string | Type of time displayed. (optional)
var preOrderConfigAlwaysAppearOpen = true; // bool? | Specifies whether a customer can pre-order outside the store opening hours or not. (optional)
var preOrderConfigRequireExplicitSelectAlways = true; // bool? | Force customer to select collection time. (optional)
try
{
RestApiArrayResultPreOrderTime result = apiInstance.GetPreOrderPreview(storeId, deliveryType, preOrderConfigLeadTimeMinutes, preOrderConfigIntervalMinutes, preOrderConfigMaxOrderAheadDays, preOrderConfigIncludeAsap, preOrderConfigIncludeMoreGranularInitialTime, preOrderConfigCutOffTimePreviousDayBasic, preOrderConfigCutOffTimeCurrentDayBasic, preOrderConfigPreOrderTimeDisplayType, preOrderConfigAlwaysAppearOpen, preOrderConfigRequireExplicitSelectAlways);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetPreOrderPreview: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| deliveryType | string | ||
| preOrderConfigLeadTimeMinutes | int? | Lead Time in Minutes | [optional] |
| preOrderConfigIntervalMinutes | int? | Interval in minutes | [optional] |
| preOrderConfigMaxOrderAheadDays | int? | Max Days to order ahead | [optional] |
| preOrderConfigIncludeAsap | bool? | Show ASAP as option | [optional] |
| preOrderConfigIncludeMoreGranularInitialTime | bool? | Granual Init' Time | [optional] |
| preOrderConfigCutOffTimePreviousDayBasic | string | Cut off time previous day | [optional] |
| preOrderConfigCutOffTimeCurrentDayBasic | string | Cut off time current day | [optional] |
| preOrderConfigPreOrderTimeDisplayType | string | Type of time displayed. | [optional] |
| preOrderConfigAlwaysAppearOpen | bool? | Specifies whether a customer can pre-order outside the store opening hours or not. | [optional] |
| preOrderConfigRequireExplicitSelectAlways | bool? | Force customer to select collection time. | [optional] |
RestApiArrayResultPreOrderTime
- 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]
RestApiArrayResultProcessingFeeConfig GetProcessingFeeConfigsByStoreId (int? storeId, string appNameId = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetProcessingFeeConfigsByStoreIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var appNameId = appNameId_example; // string | (optional)
try
{
RestApiArrayResultProcessingFeeConfig result = apiInstance.GetProcessingFeeConfigsByStoreId(storeId, appNameId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetProcessingFeeConfigsByStoreId: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| appNameId | string | [optional] |
RestApiArrayResultProcessingFeeConfig
- 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]
RestApiResultProcessingFeeConfig GetProcessingFeeConfigsByStoreIdAndPaymentAccountType (int? storeId, string paymentAccountType, string appNameId = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetProcessingFeeConfigsByStoreIdAndPaymentAccountTypeExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var paymentAccountType = paymentAccountType_example; // string |
var appNameId = appNameId_example; // string | (optional)
try
{
RestApiResultProcessingFeeConfig result = apiInstance.GetProcessingFeeConfigsByStoreIdAndPaymentAccountType(storeId, paymentAccountType, appNameId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetProcessingFeeConfigsByStoreIdAndPaymentAccountType: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| paymentAccountType | string | ||
| appNameId | string | [optional] |
RestApiResultProcessingFeeConfig
- 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]
RestApiResultStore GetStoreById (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoreByIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
RestApiResultStore result = apiInstance.GetStoreById(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoreById: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
- 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]
RestApiArrayResultStoreDeliveryZoneFeeConfig GetStoreDeliveryFeeConfig (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoreDeliveryFeeConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
RestApiArrayResultStoreDeliveryZoneFeeConfig result = apiInstance.GetStoreDeliveryFeeConfig(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoreDeliveryFeeConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
RestApiArrayResultStoreDeliveryZoneFeeConfig
- 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]
StoreFeeConfig GetStoreFeeConfig (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoreFeeConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
StoreFeeConfig result = apiInstance.GetStoreFeeConfig(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoreFeeConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
- 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]
RestApiPaginationResultStoreHeader GetStoreHeadersByAppId (string appId, string storeNameQuery = null, string salesChannelType = null, int? page = null, int? limit = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoreHeadersByAppIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var appId = appId_example; // string |
var storeNameQuery = storeNameQuery_example; // string | (optional)
var salesChannelType = salesChannelType_example; // string | (optional)
var page = 56; // int? | (optional)
var limit = 56; // int? | (optional)
try
{
RestApiPaginationResultStoreHeader result = apiInstance.GetStoreHeadersByAppId(appId, storeNameQuery, salesChannelType, page, limit);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoreHeadersByAppId: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| storeNameQuery | string | [optional] | |
| salesChannelType | string | [optional] | |
| page | int? | [optional] | |
| limit | int? | [optional] |
RestApiPaginationResultStoreHeader
- 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]
RestApiResultOrderLeadTimes GetStoreLeadTimes (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoreLeadTimesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
RestApiResultOrderLeadTimes result = apiInstance.GetStoreLeadTimes(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoreLeadTimes: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
- 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]
RestApiArrayResultStoreStatistics GetStoreNetSales (string appId, List<int?> storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoreNetSalesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var appId = appId_example; // string |
var storeId = new List<int?>(); // List<int?> |
try
{
RestApiArrayResultStoreStatistics result = apiInstance.GetStoreNetSales(appId, storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoreNetSales: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| storeId | List<int?> |
RestApiArrayResultStoreStatistics
- 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]
ServiceCharge GetStoreServiceCharge (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoreServiceChargeExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
ServiceCharge result = apiInstance.GetStoreServiceCharge(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoreServiceCharge: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
- 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]
RestApiPaginationResultStore GetStores (string searchQuery = null, int? page = null, int? limit = null, int? storeGroupId = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoresExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var searchQuery = searchQuery_example; // string | (optional)
var page = 56; // int? | (optional)
var limit = 56; // int? | (optional)
var storeGroupId = 56; // int? | (optional)
try
{
RestApiPaginationResultStore result = apiInstance.GetStores(searchQuery, page, limit, storeGroupId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStores: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| searchQuery | string | [optional] | |
| page | int? | [optional] | |
| limit | int? | [optional] | |
| storeGroupId | int? | [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]
RestApiPaginationResultStore GetStoresByAppId (string appId, string searchQuery = null, string salesChannelType = null, bool? excludeUnpublished = null, int? page = null, int? limit = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoresByAppIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var appId = appId_example; // string |
var searchQuery = searchQuery_example; // string | (optional)
var salesChannelType = salesChannelType_example; // string | (optional)
var excludeUnpublished = true; // bool? | (optional)
var page = 56; // int? | (optional)
var limit = 56; // int? | (optional)
try
{
RestApiPaginationResultStore result = apiInstance.GetStoresByAppId(appId, searchQuery, salesChannelType, excludeUnpublished, page, limit);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoresByAppId: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| searchQuery | string | [optional] | |
| salesChannelType | string | [optional] | |
| excludeUnpublished | bool? | [optional] | |
| page | int? | [optional] | |
| limit | int? | [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]
RestApiPaginationResultStoreValidationConfig GetStoresByStoreIdWithValidations (List<int?> storeId, string appId, int? page = null, int? limit = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetStoresByStoreIdWithValidationsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = new List<int?>(); // List<int?> |
var appId = appId_example; // string |
var page = 56; // int? | (optional)
var limit = 56; // int? | (optional)
try
{
RestApiPaginationResultStoreValidationConfig result = apiInstance.GetStoresByStoreIdWithValidations(storeId, appId, page, limit);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.GetStoresByStoreIdWithValidations: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | List<int?> | ||
| appId | string | ||
| page | int? | [optional] | |
| limit | int? | [optional] |
RestApiPaginationResultStoreValidationConfig
- 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]
void PublishStore (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class PublishStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
apiInstance.PublishStore(storeId);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.PublishStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
void (empty response body)
- 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]
void PutStoreDeliveryFeeConfig (int? storeId, StoreDeliveryZoneFeeConfigUpdateRequest feeConfigUpdateRequest)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class PutStoreDeliveryFeeConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var feeConfigUpdateRequest = new StoreDeliveryZoneFeeConfigUpdateRequest(); // StoreDeliveryZoneFeeConfigUpdateRequest |
try
{
apiInstance.PutStoreDeliveryFeeConfig(storeId, feeConfigUpdateRequest);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.PutStoreDeliveryFeeConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| feeConfigUpdateRequest | StoreDeliveryZoneFeeConfigUpdateRequest |
void (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
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiResultBusinessHoursPeriod SetBusinessHours (int? storeId, string deliveryType, BusinessHoursPeriodBase businessHoursPeriod)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SetBusinessHoursExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var deliveryType = deliveryType_example; // string |
var businessHoursPeriod = new BusinessHoursPeriodBase(); // BusinessHoursPeriodBase |
try
{
RestApiResultBusinessHoursPeriod result = apiInstance.SetBusinessHours(storeId, deliveryType, businessHoursPeriod);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.SetBusinessHours: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| deliveryType | string | ||
| businessHoursPeriod | BusinessHoursPeriodBase |
RestApiResultBusinessHoursPeriod
- 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]
RestApiArrayResultRestApiDefaultResponse SetPreOrdeEnabled (int? storeId, string deliveryType, bool? enabled)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SetPreOrdeEnabledExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var deliveryType = deliveryType_example; // string |
var enabled = true; // bool? |
try
{
RestApiArrayResultRestApiDefaultResponse result = apiInstance.SetPreOrdeEnabled(storeId, deliveryType, enabled);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.SetPreOrdeEnabled: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| deliveryType | string | ||
| enabled | bool? |
RestApiArrayResultRestApiDefaultResponse
- 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]
RestApiResultRestApiDefaultResponse SetStoreCollectionSettings (int? storeId, StoreCollectionSettings settings, bool? inheritFromProperty = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SetStoreCollectionSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var settings = new StoreCollectionSettings(); // StoreCollectionSettings |
var inheritFromProperty = true; // bool? | (optional)
try
{
RestApiResultRestApiDefaultResponse result = apiInstance.SetStoreCollectionSettings(storeId, settings, inheritFromProperty);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.SetStoreCollectionSettings: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| settings | StoreCollectionSettings | ||
| inheritFromProperty | bool? | [optional] |
RestApiResultRestApiDefaultResponse
- 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]
RestApiResultOrderLeadTimes SetStoreLeadTimes (int? storeId, LeadTime leadTime)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SetStoreLeadTimesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var leadTime = new LeadTime(); // LeadTime |
try
{
RestApiResultOrderLeadTimes result = apiInstance.SetStoreLeadTimes(storeId, leadTime);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.SetStoreLeadTimes: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| leadTime | LeadTime |
- 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]
Object StoresSetPropertyId (int? storeId, string propertyId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class StoresSetPropertyIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var propertyId = propertyId_example; // string |
try
{
Object result = apiInstance.StoresSetPropertyId(storeId, propertyId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.StoresSetPropertyId: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| propertyId | string |
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]
void SupportedSalesChannelsTypes (string propertyId, int? storeId, List salesChannelTypes)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SupportedSalesChannelsTypesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var propertyId = propertyId_example; // string |
var storeId = 56; // int? |
var salesChannelTypes = salesChannelTypes_example; // List<string> |
try
{
apiInstance.SupportedSalesChannelsTypes(propertyId, storeId, salesChannelTypes);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.SupportedSalesChannelsTypes: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| propertyId | string | ||
| storeId | int? | ||
| salesChannelTypes | List<string> |
void (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
[Back to top] [Back to API list] [Back to Model list] [Back to README]
void UnpublishStore (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UnpublishStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
try
{
apiInstance.UnpublishStore(storeId);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.UnpublishStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
void (empty response body)
- 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]
RestApiArrayResultRestApiDefaultResponse UpdatePreOrderConfig (int? storeId, string deliveryType, PreOrderConfig preOrderConfig)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdatePreOrderConfigExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var deliveryType = deliveryType_example; // string |
var preOrderConfig = new PreOrderConfig(); // PreOrderConfig |
try
{
RestApiArrayResultRestApiDefaultResponse result = apiInstance.UpdatePreOrderConfig(storeId, deliveryType, preOrderConfig);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.UpdatePreOrderConfig: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| deliveryType | string | ||
| preOrderConfig | PreOrderConfig |
RestApiArrayResultRestApiDefaultResponse
- 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]
RestApiResultStore UpdateStore (int? storeId, StoreBase store)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdateStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var store = new StoreBase(); // StoreBase |
try
{
RestApiResultStore result = apiInstance.UpdateStore(storeId, store);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.UpdateStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| store | StoreBase |
- 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]
RestApiResultStoreAddress UpdateStoreAddress (int? storeId, StoreAddressBase storeAddress)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdateStoreAddressExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var storeAddress = new StoreAddressBase(); // StoreAddressBase |
try
{
RestApiResultStoreAddress result = apiInstance.UpdateStoreAddress(storeId, storeAddress);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.UpdateStoreAddress: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| storeAddress | StoreAddressBase |
- 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]
RestApiResultCoordinates UpdateStoreAddressCoordinates (int? storeId, Coordinates coordinates, string appNameId = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdateStoreAddressCoordinatesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var coordinates = new Coordinates(); // Coordinates |
var appNameId = appNameId_example; // string | (optional)
try
{
RestApiResultCoordinates result = apiInstance.UpdateStoreAddressCoordinates(storeId, coordinates, appNameId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.UpdateStoreAddressCoordinates: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| coordinates | Coordinates | ||
| appNameId | string | [optional] |
- 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]
Object UpdateStoreAddressForm (int? storeId, StoreAddressForm address)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdateStoreAddressFormExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StoresApi();
var storeId = 56; // int? |
var address = new StoreAddressForm(); // StoreAddressForm |
try
{
Object result = apiInstance.UpdateStoreAddressForm(storeId, address);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StoresApi.UpdateStoreAddressForm: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| address | StoreAddressForm |
Object
- 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]