Skip to content

Latest commit

 

History

History
120 lines (90 loc) · 3.07 KB

WalletApi.md

File metadata and controls

120 lines (90 loc) · 3.07 KB

IO.Swagger.Api.WalletApi

All URIs are relative to https://www.bitmex.com/api/v1

Method HTTP request Description
WalletGetAssetsConfig GET /wallet/assets Get Assets Config
WalletGetNetworksConfig GET /wallet/networks Get Networks Config

WalletGetAssetsConfig

List WalletGetAssetsConfig ()

Get Assets Config

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class WalletGetAssetsConfigExample
    {
        public void main()
        {
            var apiInstance = new WalletApi();

            try
            {
                // Get Assets Config
                List<AssetsConfig> result = apiInstance.WalletGetAssetsConfig();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletApi.WalletGetAssetsConfig: " + e.Message );
            }
        }
    }
}

Parameters

This endpoint does not need any parameter.

Return type

List

Authorization

No authorization required

HTTP request headers

  • 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]

WalletGetNetworksConfig

List WalletGetNetworksConfig ()

Get Networks Config

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class WalletGetNetworksConfigExample
    {
        public void main()
        {
            var apiInstance = new WalletApi();

            try
            {
                // Get Networks Config
                List<NetworksConfig> result = apiInstance.WalletGetNetworksConfig();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling WalletApi.WalletGetNetworksConfig: " + e.Message );
            }
        }
    }
}

Parameters

This endpoint does not need any parameter.

Return type

List

Authorization

No authorization required

HTTP request headers

  • 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]