All URIs are relative to https://api.originstamp.com
| Method | HTTP request | Description |
|---|---|---|
| GetApiKeyUsage | GET /v3/api_key/usage | Usage |
DefaultUsageResponse GetApiKeyUsage (string authorization)
Usage
With this interface you can receive the current usage of your API key. The usage statistic refers to the associated account.
using System;
using System.Diagnostics;
using OriginStamp.Client.Api;
using OriginStamp.Client.Client;
using OriginStamp.Client.Model;
namespace Example
{
public class GetApiKeyUsageExample
{
public void main()
{
var apiInstance = new APIKeyApi();
var authorization = authorization_example; // string | A valid API key is essential for authorization to handle the request.
try
{
// Usage
DefaultUsageResponse result = apiInstance.GetApiKeyUsage(authorization);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling APIKeyApi.GetApiKeyUsage: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| authorization | string | A valid API key is essential for authorization to handle the request. |
[API Key Authorization](../README.md#API Key Authorization)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]