Skip to content

Latest commit

 

History

History
93 lines (57 loc) · 1.99 KB

File metadata and controls

93 lines (57 loc) · 1.99 KB

Intrinio.SDK.Api.AccountApi

All URIs are relative to https://api-v2.intrinio.com

Method HTTP request Description
GetAccountCurrentUsage GET /account Account Current Usage

GetAccountCurrentUsage

View Intrinio API Documentation

ApiResponseAccountUsages GetAccountCurrentUsage ()

Account Current Usage

Returns a list of all access codes available with their current usage.

Example

using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;

namespace Example
{
  public class GetAccountCurrentUsageExample
  {
    public static void Main()
    {
      Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
      Configuration.Default.AllowRetries = true;
      
      var accountApi = new AccountApi();
      
      
      ApiResponseAccountUsages result = accountApi.GetAccountCurrentUsage();
      Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
    }
  }
}

Parameters

This endpoint does not need any parameter.

Return type

ApiResponseAccountUsages