All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| StuartCancelJob | DELETE /api/v1.0/stuart/jobs/{jobId} | |
| StuartGetJob | GET /api/v1.0/stuart/jobs/{jobId} | |
| StuartGetStuartSettings | GET /api/v1.0/stuart/settings/{storeId} | |
| StuartPostStuartSettings | POST /api/v1.0/stuart/settings/{storeId} |
Object StuartCancelJob (int? jobId, int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class StuartCancelJobExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StuartApi();
var jobId = 56; // int? |
var storeId = 56; // int? |
try
{
Object result = apiInstance.StuartCancelJob(jobId, storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StuartApi.StuartCancelJob: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| jobId | int? | ||
| 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]
RestApiResultJobResponse StuartGetJob (int? jobId, int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class StuartGetJobExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StuartApi();
var jobId = 56; // int? |
var storeId = 56; // int? |
try
{
RestApiResultJobResponse result = apiInstance.StuartGetJob(jobId, storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StuartApi.StuartGetJob: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| jobId | int? | ||
| 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]
RestApiResultStuartSettings StuartGetStuartSettings (int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class StuartGetStuartSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StuartApi();
var storeId = 56; // int? |
try
{
RestApiResultStuartSettings result = apiInstance.StuartGetStuartSettings(storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StuartApi.StuartGetStuartSettings: " + 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]
Object StuartPostStuartSettings (int? storeId, StuartSettings stuartSettings)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class StuartPostStuartSettingsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new StuartApi();
var storeId = 56; // int? |
var stuartSettings = new StuartSettings(); // StuartSettings |
try
{
Object result = apiInstance.StuartPostStuartSettings(storeId, stuartSettings);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StuartApi.StuartPostStuartSettings: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| stuartSettings | StuartSettings |
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]