All URIs are relative to https://api-v2.intrinio.com
| Method | HTTP request | Description |
|---|---|---|
| GetAccountCurrentUsage | GET /account | Account Current Usage |
View Intrinio API Documentation
ApiResponseAccountUsages GetAccountCurrentUsage ()
Returns a list of all access codes available with their current usage.
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));
}
}
}This endpoint does not need any parameter.