Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

Latest commit

 

History

History
70 lines (51 loc) · 1.99 KB

File metadata and controls

70 lines (51 loc) · 1.99 KB

OriginStamp.Client.Api.SchedulerApi

All URIs are relative to https://api.originstamp.com

Method HTTP request Description
GetActiveCurrencies GET /v3/currencies/get Get active currencies

GetActiveCurrencies

DefaultOfListOfCurrencyModel GetActiveCurrencies (string authorization)

Get active currencies

Returns an array with all active currencies.

Example

using System;
using System.Diagnostics;
using OriginStamp.Client.Api;
using OriginStamp.Client.Client;
using OriginStamp.Client.Model;

namespace Example
{
    public class GetActiveCurrenciesExample
    {
        public void main()
        {
            var apiInstance = new SchedulerApi();
            var authorization = authorization_example;  // string | A valid API key is essential for authorization to handle the request.

            try
            {
                // Get active currencies
                DefaultOfListOfCurrencyModel result = apiInstance.GetActiveCurrencies(authorization);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SchedulerApi.GetActiveCurrencies: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
authorization string A valid API key is essential for authorization to handle the request.

Return type

DefaultOfListOfCurrencyModel

Authorization

[API Key Authorization](../README.md#API Key Authorization)

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]