All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| HeadHostname | HEAD /api/v1.0/heartbeat/Hostname | |
| HeadPing | HEAD /api/v1.0/heartbeat | |
| Hostname | GET /api/v1.0/heartbeat/Hostname | |
| Ping | GET /api/v1.0/heartbeat |
Object HeadHostname ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class HeadHostnameExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HeartbeatApi();
try
{
Object result = apiInstance.HeadHostname();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HeartbeatApi.HeadHostname: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
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]
RestApiStringResult HeadPing ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class HeadPingExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HeartbeatApi();
try
{
RestApiStringResult result = apiInstance.HeadPing();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HeartbeatApi.HeadPing: " + 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 Hostname ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class HostnameExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HeartbeatApi();
try
{
Object result = apiInstance.Hostname();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HeartbeatApi.Hostname: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
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]
RestApiStringResult Ping ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class PingExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new HeartbeatApi();
try
{
RestApiStringResult result = apiInstance.Ping();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling HeartbeatApi.Ping: " + 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]