All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| LightspeedGenerateMenu | POST /api/v1.0/lightspeed/{storeId}/menu/generate | |
| LightspeedGetStoreSettings | GET /api/v1.0/lightspeed/{storeId}/settings | |
| LightspeedSaveStoreSettings | POST /api/v1.0/lightspeed/{storeId}/settings |
Object LightspeedGenerateMenu (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class LightspeedGenerateMenuExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new LightspeedApi();
var storeId = 56; // int? |
try
{
Object result = apiInstance.LightspeedGenerateMenu(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling LightspeedApi.LightspeedGenerateMenu: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
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]
RestApiResultLightspeedSettings LightspeedGetStoreSettings (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class LightspeedGetStoreSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new LightspeedApi();
var storeId = 56; // int? |
try
{
RestApiResultLightspeedSettings result = apiInstance.LightspeedGetStoreSettings(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling LightspeedApi.LightspeedGetStoreSettings: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? |
RestApiResultLightspeedSettings
- 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]
RestApiResultLightspeedSettings LightspeedSaveStoreSettings (int? storeId, LightspeedSettings lightspeedSettings)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class LightspeedSaveStoreSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new LightspeedApi();
var storeId = 56; // int? |
var lightspeedSettings = new LightspeedSettings(); // LightspeedSettings |
try
{
RestApiResultLightspeedSettings result = apiInstance.LightspeedSaveStoreSettings(storeId, lightspeedSettings);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling LightspeedApi.LightspeedSaveStoreSettings: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| lightspeedSettings | LightspeedSettings |
RestApiResultLightspeedSettings
- 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]