All URIs are relative to https://localhost/api/v1
Method | HTTP request | Description |
---|---|---|
LeaderboardGet | GET /leaderboard | Get current leaderboard. |
List LeaderboardGet (string method = null)
Get current leaderboard.
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class LeaderboardGetExample
{
public void main()
{
var apiInstance = new LeaderboardApi();
var method = method_example; // string | Ranking type. Options: \"notional\", \"ROE\" (optional) (default to notional)
try
{
// Get current leaderboard.
List<Leaderboard> result = apiInstance.LeaderboardGet(method);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling LeaderboardApi.LeaderboardGet: " + e.Message );
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
method | string | Ranking type. Options: "notional", "ROE" | [optional] [default to notional] |
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]