Skip to content

Latest commit

 

History

History
93 lines (57 loc) · 2.04 KB

BulkDownloadsApi.md

File metadata and controls

93 lines (57 loc) · 2.04 KB

Intrinio.SDK.Api.BulkDownloadsApi

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

Method HTTP request Description
GetBulkDownloadLinks GET /bulk_downloads/links All Links

GetBulkDownloadLinks

View Intrinio API Documentation

ApiResponseBulkDownloadLinks GetBulkDownloadLinks ()

All Links

Returns all active bulk downloads for your account with links to download.

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 GetBulkDownloadLinksExample
  {
    public static void Main()
    {
      Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
      Configuration.Default.AllowRetries = true;
      
      var bulkDownloadsApi = new BulkDownloadsApi();
      
      
      ApiResponseBulkDownloadLinks result = bulkDownloadsApi.GetBulkDownloadLinks();
      Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
    }
  }
}

Parameters

This endpoint does not need any parameter.

Return type

ApiResponseBulkDownloadLinks