All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| AssignEmv | POST /api/v1.0/{appId}/hydra/emvterminal/assign/{hydraConfigId}/{emvTerminalId} | |
| AttachStoreToKiosk | POST /api/v1.0/{appId}/AttachStoreToKiosk/{deviceId}/store/{storeId} | |
| AttachStoreToTerminal | POST /api/v1.0/{appId}/hydra/{deviceId}/attach/{storeId} | |
| CancelEmvPayment | POST /api/v1.0/{appId}/hydra/cancelemvpayment/{orderId} | |
| DetachStoreFromTerminal | POST /api/v1.0/{appId}/hydra/{deviceId}/detach/{storeId} | |
| GetAblyToken | GET /api/v1.0/hydra/ably_token | |
| GetAttachedDevice | GET /api/v1.0/{appId}/hydra/{deviceType}/{deviceId} | |
| GetAttachedDevices | GET /api/v1.0/{appId}/hydra/{deviceType}/list | |
| GetEMVTerminalDetails | GET /api/v1.0/{appId}/hydra/emvterminal | |
| GetEmvOrderState | GET /api/v1.0/{appId}/hydra/emvorderstate/{orderId} | |
| GetKioskCashPaymentSettings | GET /api/v1.0/{appId}/kioskcashsettings/{deviceId} | |
| GetKioskSettings | GET /api/v1.0/{appId}/kiosksettings/{deviceId} | |
| GetRegistration | GET /api/v1.0/hydra/registration | |
| GetSettings | GET /api/v1.0/hydra/settings | |
| HydraCreateEmv | POST /api/v1.0/{appId}/emvterminals | |
| HydraDeleteEmv | DELETE /api/v1.0/{appId}/emvterminals/{id} | |
| HydraDetachStoreFromKiosk | DELETE /api/v1.0/{appId}/DetachStoreFromKiosk/{deviceId}/store/{storeId} | |
| HydraGetEmvsForAppId | GET /api/v1.0/{appId}/emvterminals | |
| LoginWithDeviceId | POST /api/v1.0/hydra/{deviceId}/login | |
| Register | POST /api/v1.0/{appId}/hydra/registration | |
| UnAssign | DELETE /api/v1.0/{appId}/hydra/{deviceId}/registration | |
| UnassignEmv | POST /api/v1.0/{appId}/hydra/emvterminal/unassign/{hydraConfigId} | |
| UpdateKioskCashVisibilitySettings | POST /api/v1.0/{appId}/kioskupdatecashsettings | |
| UpdateKioskSettings | POST /api/v1.0/{appId}/kiosksettings/{deviceId} |
void AssignEmv (string appId, int? hydraConfigId, int? emvTerminalId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class AssignEmvExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var hydraConfigId = 56; // int? |
var emvTerminalId = 56; // int? |
try
{
apiInstance.AssignEmv(appId, hydraConfigId, emvTerminalId);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.AssignEmv: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| hydraConfigId | int? | ||
| emvTerminalId | 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]
RestApiResultHydraStatus AttachStoreToKiosk (string appId, int? storeId, string deviceId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class AttachStoreToKioskExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var storeId = 56; // int? |
var deviceId = deviceId_example; // string |
try
{
RestApiResultHydraStatus result = apiInstance.AttachStoreToKiosk(appId, storeId, deviceId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.AttachStoreToKiosk: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| storeId | int? | ||
| deviceId | 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]
RestApiResultHydraStatus AttachStoreToTerminal (string appId, string deviceId, int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class AttachStoreToTerminalExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceId = deviceId_example; // string |
var storeId = 56; // int? |
try
{
RestApiResultHydraStatus result = apiInstance.AttachStoreToTerminal(appId, deviceId, storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.AttachStoreToTerminal: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceId | string | ||
| 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]
void CancelEmvPayment (int? orderId, string appId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class CancelEmvPaymentExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var orderId = 56; // int? |
var appId = appId_example; // string |
try
{
apiInstance.CancelEmvPayment(orderId, appId);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.CancelEmvPayment: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| orderId | int? | ||
| appId | string |
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]
RestApiResultHydraStatus DetachStoreFromTerminal (string appId, string deviceId, int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DetachStoreFromTerminalExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceId = deviceId_example; // string |
var storeId = 56; // int? |
try
{
RestApiResultHydraStatus result = apiInstance.DetachStoreFromTerminal(appId, deviceId, storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.DetachStoreFromTerminal: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceId | string | ||
| 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]
void GetAblyToken ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetAblyTokenExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
try
{
apiInstance.GetAblyToken();
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetAblyToken: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
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]
RestApiResultHydraDeviceDetails GetAttachedDevice (string appId, string deviceType, string deviceId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetAttachedDeviceExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceType = deviceType_example; // string |
var deviceId = deviceId_example; // string |
try
{
RestApiResultHydraDeviceDetails result = apiInstance.GetAttachedDevice(appId, deviceType, deviceId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetAttachedDevice: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceType | string | ||
| deviceId | string |
RestApiResultHydraDeviceDetails
- 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]
RestApiPaginationResultHydraDeviceDetails GetAttachedDevices (string appId, string deviceType, int? pageIndex = null, int? pageSize = null, int? storeId = null, string deviceName = null, string deviceSerial = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetAttachedDevicesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceType = deviceType_example; // string |
var pageIndex = 56; // int? | (optional)
var pageSize = 56; // int? | (optional)
var storeId = 56; // int? | (optional)
var deviceName = deviceName_example; // string | (optional)
var deviceSerial = deviceSerial_example; // string | (optional)
try
{
RestApiPaginationResultHydraDeviceDetails result = apiInstance.GetAttachedDevices(appId, deviceType, pageIndex, pageSize, storeId, deviceName, deviceSerial);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetAttachedDevices: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceType | string | ||
| pageIndex | int? | [optional] | |
| pageSize | int? | [optional] | |
| storeId | int? | [optional] | |
| deviceName | string | [optional] | |
| deviceSerial | string | [optional] |
RestApiPaginationResultHydraDeviceDetails
- 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]
RestApiResultPaymentTerminalDetails GetEMVTerminalDetails (string appId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetEMVTerminalDetailsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
try
{
RestApiResultPaymentTerminalDetails result = apiInstance.GetEMVTerminalDetails(appId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetEMVTerminalDetails: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string |
RestApiResultPaymentTerminalDetails
- 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]
RestApiResultPaymentTerminalTransactionDetails GetEmvOrderState (int? orderId, string appId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetEmvOrderStateExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var orderId = 56; // int? |
var appId = appId_example; // string |
try
{
RestApiResultPaymentTerminalTransactionDetails result = apiInstance.GetEmvOrderState(orderId, appId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetEmvOrderState: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| orderId | int? | ||
| appId | string |
RestApiResultPaymentTerminalTransactionDetails
- 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]
RestApiArrayResultKioskCashPaymentSettings GetKioskCashPaymentSettings (string appId, string deviceId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetKioskCashPaymentSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceId = deviceId_example; // string |
try
{
RestApiArrayResultKioskCashPaymentSettings result = apiInstance.GetKioskCashPaymentSettings(appId, deviceId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetKioskCashPaymentSettings: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceId | string |
RestApiArrayResultKioskCashPaymentSettings
- 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]
RestApiResultKioskSettings GetKioskSettings (string appId, string deviceId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetKioskSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceId = deviceId_example; // string |
try
{
RestApiResultKioskSettings result = apiInstance.GetKioskSettings(appId, deviceId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetKioskSettings: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceId | 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]
RestApiResultHydraStatus GetRegistration ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetRegistrationExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
try
{
RestApiResultHydraStatus result = apiInstance.GetRegistration();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetRegistration: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
- 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]
RestApiResultHydraConfig GetSettings ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
try
{
RestApiResultHydraConfig result = apiInstance.GetSettings();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.GetSettings: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
- 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]
Object HydraCreateEmv (string appId, EmvTerminal emv)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class HydraCreateEmvExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var emv = new EmvTerminal(); // EmvTerminal |
try
{
Object result = apiInstance.HydraCreateEmv(appId, emv);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.HydraCreateEmv: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| emv | EmvTerminal |
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]
Object HydraDeleteEmv (string appId, int? id)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class HydraDeleteEmvExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var id = 56; // int? |
try
{
Object result = apiInstance.HydraDeleteEmv(appId, id);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.HydraDeleteEmv: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| id | 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]
RestApiResultHydraStatus HydraDetachStoreFromKiosk (string appId, int? storeId, string deviceId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class HydraDetachStoreFromKioskExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var storeId = 56; // int? |
var deviceId = deviceId_example; // string |
try
{
RestApiResultHydraStatus result = apiInstance.HydraDetachStoreFromKiosk(appId, storeId, deviceId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.HydraDetachStoreFromKiosk: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| storeId | int? | ||
| deviceId | 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]
RestApiArrayResultEmvTerminalWithAssignments HydraGetEmvsForAppId (string appId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class HydraGetEmvsForAppIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
try
{
RestApiArrayResultEmvTerminalWithAssignments result = apiInstance.HydraGetEmvsForAppId(appId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.HydraGetEmvsForAppId: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string |
RestApiArrayResultEmvTerminalWithAssignments
- 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 LoginWithDeviceId (string deviceId, string hydraUserType = null, string serialNumber = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class LoginWithDeviceIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var deviceId = deviceId_example; // string |
var hydraUserType = hydraUserType_example; // string | (optional)
var serialNumber = serialNumber_example; // string | (optional)
try
{
apiInstance.LoginWithDeviceId(deviceId, hydraUserType, serialNumber);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.LoginWithDeviceId: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| deviceId | string | ||
| hydraUserType | string | [optional] | |
| serialNumber | string | [optional] |
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]
RestApiResultHydraStatus Register (string appId, HydraRegistrationRequest hydraRegistration)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class RegisterExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var hydraRegistration = new HydraRegistrationRequest(); // HydraRegistrationRequest |
try
{
RestApiResultHydraStatus result = apiInstance.Register(appId, hydraRegistration);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.Register: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| hydraRegistration | HydraRegistrationRequest |
- 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 UnAssign (string appId, string deviceId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UnAssignExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceId = deviceId_example; // string |
try
{
apiInstance.UnAssign(appId, deviceId);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.UnAssign: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceId | string |
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 UnassignEmv (string appId, int? hydraConfigId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UnassignEmvExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var hydraConfigId = 56; // int? |
try
{
apiInstance.UnassignEmv(appId, hydraConfigId);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.UnassignEmv: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| hydraConfigId | 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 UpdateKioskCashVisibilitySettings (string appId, string deviceId, bool? isCashEnabled)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdateKioskCashVisibilitySettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceId = deviceId_example; // string |
var isCashEnabled = true; // bool? |
try
{
apiInstance.UpdateKioskCashVisibilitySettings(appId, deviceId, isCashEnabled);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.UpdateKioskCashVisibilitySettings: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceId | string | ||
| isCashEnabled | bool? |
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 UpdateKioskSettings (string appId, string deviceId, KioskSettings settings)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UpdateKioskSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HydraApi();
var appId = appId_example; // string |
var deviceId = deviceId_example; // string |
var settings = new KioskSettings(); // KioskSettings |
try
{
apiInstance.UpdateKioskSettings(appId, deviceId, settings);
}
catch (Exception e)
{
Debug.Print("Exception when calling HydraApi.UpdateKioskSettings: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | string | ||
| deviceId | string | ||
| settings | KioskSettings |
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]