All URIs are relative to https://localhost
| Method | HTTP request | Description |
|---|---|---|
| ledgers_get | GET /api/v1/ledgers |
LedgerList ledgers_get(top=top, skip=skip)
Lists the supported blockchain types, such as Ethereum or Hyperledger Fabric.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.LedgersApi()
top = 56 # int | The maximum number of items to return (optional)
skip = 56 # int | The number of items to skip before returning (optional)
try:
#
api_response = api_instance.ledgers_get(top=top, skip=skip)
pprint(api_response)
except ApiException as e:
print("Exception when calling LedgersApi->ledgers_get: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| top | int | The maximum number of items to return | [optional] |
| skip | int | The number of items to skip before returning | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]