# Atrium::AccountsApi Method | HTTP request | Description ------------- | ------------- | ------------- [**list_account_transactions**](AccountsApi.md#list_account_transactions) | **GET** /users/{user_guid}/accounts/{account_guid}/transactions | List account transactions [**list_user_accounts**](AccountsApi.md#list_user_accounts) | **GET** /users/{user_guid}/accounts | List accounts for a user [**read_account**](AccountsApi.md#read_account) | **GET** /users/{user_guid}/accounts/{account_guid} | Read an account [**read_account_by_member_guid**](AccountsApi.md#read_account_by_member_guid) | **GET** /users/{user_guid}/members/{member_guid}/accounts/{account_guid} | Read an account # **list_account_transactions** > TransactionsResponseBody list_account_transactions(account_guid, user_guid, opts) List account transactions This endpoint allows you to see every transaction that belongs to a specific account. The default from_date is 90 days prior to the request, and the default to_date is 5 days from the time of the request.
The from_date and to_date parameters can optionally be appended to the request. ### Example ```ruby # load the gem require 'atrium-ruby' client = Atrium::AtriumClient.new("YOUR_API_KEY", "YOUR_CLIENT_ID") account_guid = "ACT-123" # String | The unique identifier for an `account`. user_guid = "USR-123" # String | The unique identifier for a `user`. opts = { from_date: "2016-09-20", # String | Filter transactions from this date. to_date: "2016-10-20" # String | Filter transactions to this date. page: 1, # Integer | Specify current page. records_per_page: 12 # Integer | Specify records per page. } begin #List account transactions response = client.accounts.list_account_transactions(account_guid, user_guid, opts) p response rescue Atrium::ApiError => e puts "Exception when calling AccountsApi->list_account_transactions: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **account_guid** | **String**| The unique identifier for an `account`. | **user_guid** | **String**| The unique identifier for a `user`. | **from_date** | **String**| Filter transactions from this date. | [optional] **to_date** | **String**| Filter transactions to this date. | [optional] **page** | **Integer**| Specify current page. | [optional] **records_per_page** | **Integer**| Specify records per page. | [optional] ### Return type [**TransactionsResponseBody**](TransactionsResponseBody.md) # **list_user_accounts** > AccountsResponseBody list_user_accounts(user_guid, opts) List accounts for a user Use this endpoint to view information about every account that belongs to a user. You'll need the user's GUID to access this list. The information will include the account type — e.g., CHECKING, MONEY_MARKET, or PROPERTY — the account balance, the date the account was started, etc. ### Example ```ruby # load the gem require 'atrium-ruby' client = Atrium::AtriumClient.new("YOUR_API_KEY", "YOUR_CLIENT_ID") user_guid = "USR-123" # String | The unique identifier for a `user`. opts = { page: 1, # Integer | Specify current page. records_per_page: 12 # Integer | Specify records per page. } begin #List accounts for a user response = client.accounts.list_user_accounts(user_guid, opts) p response rescue Atrium::ApiError => e puts "Exception when calling AccountsApi->list_user_accounts: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **user_guid** | **String**| The unique identifier for a `user`. | **page** | **Integer**| Specify current page. | [optional] **records_per_page** | **Integer**| Specify records per page. | [optional] ### Return type [**AccountsResponseBody**](AccountsResponseBody.md) # **read_account** > AccountResponseBody read_account(account_guid, user_guid) Read an account Reading an account allows you to get information about a specific account that belongs to a user. That includes the account type — e.g., CHECKING, MONEY_MARKET, or PROPERTY — the balance, the date the account was started, and much more.
There are two endpoints for reading an account. Both will return the same information.
It's important to remember that balance and available_balance will normally be positive numbers — for all account types. But this should be interpreted differently for debt accounts and asset accounts.
An asset account, e.g., CHECKING, SAVINGS, or INVESTMENT, will have a positive balance unless it is in an overdraft condition, in which case the balance will be negative.
On the other hand, a debt account, e.g., CREDIT CARD, LOAN, MORTGAGE, would have a positivebalance when the user owes money on the account. It would have a negative balance if the account has been overpaid. ### Example ```ruby # load the gem require 'atrium-ruby' client = Atrium::AtriumClient.new("YOUR_API_KEY", "YOUR_CLIENT_ID") account_guid = "ACT-123" # String | The unique identifier for an `account`. user_guid = "USR-123" # String | The unique identifier for a `user`. begin #Read an account response = client.accounts.read_account(account_guid, user_guid) p response rescue Atrium::ApiError => e puts "Exception when calling AccountsApi->read_account: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **account_guid** | **String**| The unique identifier for an `account`. | **user_guid** | **String**| The unique identifier for a `user`. | ### Return type [**AccountResponseBody**](AccountResponseBody.md) # **read_account_by_member_guid** > AccountResponseBody read_account_by_member_guid(account_guid, member_guid, user_guid) Read an account Reading an account allows you to get information about a specific account that belongs to a user. That includes the account type — e.g., CHECKING, MONEY_MARKET, or PROPERTY — the balance, the date the account was started, and much more.
There are two endpoints for reading an account. Both will return the same information.
It's important to remember that balance and available_balance will normally be positive numbers — for all account types. But this should be interpreted differently for debt accounts and asset accounts.
An asset account, e.g., CHECKING, SAVINGS, or INVESTMENT, will have a positive balance unless it is in an overdraft condition, in which case the balance will be negative.
On the other hand, a debt account, e.g., CREDIT CARD, LOAN, MORTGAGE, would have a positivebalance when the user owes money on the account. It would have a negative balance if the account has been overpaid. ### Example ```ruby # load the gem require 'atrium-ruby' client = Atrium::AtriumClient.new("YOUR_API_KEY", "YOUR_CLIENT_ID") account_guid = "ACT-123" # String | The unique identifier for an `account`. member_guid = "MBR-123" # String | The unique identifier for a `member`. user_guid = "USR-123" # String | The unique identifier for a `user`. begin #Read an account response = client.accounts.read_account_by_member_guid(account_guid, member_guid, user_guid) p response rescue Atrium::ApiError => e puts "Exception when calling AccountsApi->read_account_by_member_guid: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **account_guid** | **String**| The unique identifier for an `account`. | **member_guid** | **String**| The unique identifier for a `member`. | **user_guid** | **String**| The unique identifier for a `user`. | ### Return type [**AccountResponseBody**](AccountResponseBody.md)