Account API
swagger_client.AccountApi
All URIs are relative to /
api_v1_get_account_get
GET /api/v1/GetAccount
api_v1_get_accounts_get
GET /api/v1/GetAccounts
api_v1_get_addresses_by_symbol_get
GET /api/v1/GetAddressesBySymbol
api_v1_look_up_name_get
GET /api/v1/LookUpName
api_v1_get_account_get
AccountResult api_v1_get_account_get(account=account)
Example
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.AccountApi()
account = 'account_example' # str | (optional)
try:
api_response = api_instance.api_v1_get_account_get(account=account)
pprint(api_response)
except ApiException as e:
print("Exception when calling AccountApi->api_v1_get_account_get: %s\n" % e)
Parameters
account
str
[optional]
Return type
AccountResult
Authorization
No authorization required
HTTP request headers
Content-Type: Not defined
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
api_v1_get_accounts_get
list[AccountResult] api_v1_get_accounts_get(account_text=account_text)
Example
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.AccountApi()
account_text = 'account_text_example' # str | (optional)
try:
api_response = api_instance.api_v1_get_accounts_get(account_text=account_text)
pprint(api_response)
except ApiException as e:
print("Exception when calling AccountApi->api_v1_get_accounts_get: %s\n" % e)
Parameters
account_text
str
[optional]
Return type
list[AccountResult]
Authorization
No authorization required
HTTP request headers
Content-Type: Not defined
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
api_v1_get_addresses_by_symbol_get
list[AccountResult] api_v1_get_addresses_by_symbol_get(symbol=symbol, extended=extended)
Example
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.AccountApi()
symbol = 'symbol_example' # str | (optional)
extended = false # bool | (optional) (default to false)
try:
api_response = api_instance.api_v1_get_addresses_by_symbol_get(symbol=symbol, extended=extended)
pprint(api_response)
except ApiException as e:
print("Exception when calling AccountApi->api_v1_get_addresses_by_symbol_get: %s\n" % e)
Parameters
symbol
str
[optional]
extended
bool
[optional] [default to false]
Return type
list[AccountResult]
Authorization
No authorization required
HTTP request headers
Content-Type: Not defined
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
api_v1_look_up_name_get
str api_v1_look_up_name_get(name=name)
Example
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.AccountApi()
name = 'name_example' # str | (optional)
try:
api_response = api_instance.api_v1_look_up_name_get(name=name)
pprint(api_response)
except ApiException as e:
print("Exception when calling AccountApi->api_v1_look_up_name_get: %s\n" % e)
Parameters
name
str
[optional]
Return type
str
Authorization
No authorization required
HTTP request headers
Content-Type: Not defined
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Last updated