Skip to content

Latest commit

 

History

History
79 lines (60 loc) · 2.75 KB

GlobalNotificationApi.md

File metadata and controls

79 lines (60 loc) · 2.75 KB

IO.Swagger.Api.GlobalNotificationApi

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

Method HTTP request Description
GlobalNotificationGet GET /globalNotification Get your current GlobalNotifications.

GlobalNotificationGet

List GlobalNotificationGet ()

Get your current GlobalNotifications.

This is an upcoming feature and currently does not return data.

Example

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

namespace Example
{
    public class GlobalNotificationGetExample
    {
        public void main()
        {
            // Configure API key authorization: apiExpires
            Configuration.Default.AddApiKey("api-expires", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.AddApiKeyPrefix("api-expires", "Bearer");
            // Configure API key authorization: apiKey
            Configuration.Default.AddApiKey("api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.AddApiKeyPrefix("api-key", "Bearer");
            // Configure API key authorization: apiSignature
            Configuration.Default.AddApiKey("api-signature", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.AddApiKeyPrefix("api-signature", "Bearer");

            var apiInstance = new GlobalNotificationApi();

            try
            {
                // Get your current GlobalNotifications.
                List<GlobalNotification> result = apiInstance.GlobalNotificationGet();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GlobalNotificationApi.GlobalNotificationGet: " + e.Message );
            }
        }
    }
}

Parameters

This endpoint does not need any parameter.

Return type

List

Authorization

apiExpires, apiKey, apiSignature

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]