Sha256: 3760b629b41ab18a48dd75d89eacc8edbb666c6115b3921b15916ee4fbfaac2a
Contents?: true
Size: 1.75 KB
Versions: 1308
Compression:
Stored size: 1.75 KB
Contents
# CybridApiBank::AssetsBankApi All URIs are relative to *https://bank.sandbox.cybrid.app* | Method | HTTP request | Description | | ------ | ------------ | ----------- | | [**list_assets**](AssetsBankApi.md#list_assets) | **GET** /api/assets | Get assets list | ## list_assets > <AssetListBankModel> list_assets(opts) Get assets list Retrieves a listing of assets. ### Examples ```ruby require 'time' require 'cybrid_api_bank_ruby' api_instance = CybridApiBank::AssetsBankApi.new opts = { page: 56, # Integer | The page index to retrieve. per_page: 56 # Integer | The number of entities per page to return. } begin # Get assets list result = api_instance.list_assets(opts) p result rescue CybridApiBank::ApiError => e puts "Error when calling AssetsBankApi->list_assets: #{e}" end ``` #### Using the list_assets_with_http_info variant This returns an Array which contains the response data, status code and headers. > <Array(<AssetListBankModel>, Integer, Hash)> list_assets_with_http_info(opts) ```ruby begin # Get assets list data, status_code, headers = api_instance.list_assets_with_http_info(opts) p status_code # => 2xx p headers # => { ... } p data # => <AssetListBankModel> rescue CybridApiBank::ApiError => e puts "Error when calling AssetsBankApi->list_assets_with_http_info: #{e}" end ``` ### Parameters | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **page** | **Integer** | The page index to retrieve. | [optional] | | **per_page** | **Integer** | The number of entities per page to return. | [optional] | ### Return type [**AssetListBankModel**](AssetListBankModel.md) ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json
Version data entries
1,308 entries across 1,308 versions & 1 rubygems