DOCS.md in buildium-ruby-2.1.0 vs DOCS.md in buildium-ruby-3.0.0
- old
+ new
@@ -48,11 +48,13 @@
3. Under ***System preferences***, click ***Api settings***. A modal will appear.
4. Click the ***Open API*** toggle to turn it on. Then click ***Save***.
-<kbd><img src=\"app_settings.gif\" class=\"example_screen\" /></kbd>
+<video width=\"100%\" autoplay loop muted>
+ <source src=\"enable_open_api.mp4\" type=\"video/mp4\" />
+</video>
Congratulations! Your account's enabled. Now, you’re ready to start managing API keys.
<br />
<br />
@@ -82,13 +84,13 @@
**How to create an API key**
1. Sign in to your [Buildium](https://signin.managebuilding.com/manager/public/authentication/login?ReturnUrl=%2Fmanager%2F) account from your browser.
-2. Open the ***Settings*** menu and click ***API Keys***. The page will open automatically.
+2. Open the ***Settings*** menu and click ***Developer Tools***. The page will open automatically.
-3. Click ***Create API Key***. A modal will appear.
+3. Click the ***Create API Key*** button. A modal will appear.
4. Enter a clear, memorable name and description for your API key. It’ll make it easier to locate the right key when you make a request. Once finished, click **Next**.
5. Now, choose which pieces of Buildium data you want this API key to have access to by marking the corresponding checkboxes. Once finished, click **Next**.
@@ -96,11 +98,13 @@
> **Important:** This is your only chance to record the secret. Make sure it’s stored somewhere secure! If it’s forgotten, you’ll need to delete this key and start from scratch.
<br />
-<kbd><img src=\"key_gen.gif\" class=\"example_screen\" /></kbd>
+<video width=\"100%\" autoplay loop muted>
+ <source src=\"generate_open_api_key.mp4\" type=\"video/mp4\" />
+</video>
<br />
You have now successfully created an API key and have everything you need to send requests to the Buildium API!
@@ -154,11 +158,11 @@
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: v1
-- Package version: 2.1.0
+- Package version: 3.0.0
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
## Installation
### Build a gem
@@ -170,20 +174,20 @@
```
Then either install the gem locally:
```shell
-gem install ./buildium-ruby-2.1.0.gem
+gem install ./buildium-ruby-3.0.0.gem
```
-(for development, run `gem install --dev ./buildium-ruby-2.1.0.gem` to install the development dependencies)
+(for development, run `gem install --dev ./buildium-ruby-3.0.0.gem` to install the development dependencies)
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
Finally add this to the Gemfile:
- gem 'buildium-ruby', '~> 2.1.0'
+ gem 'buildium-ruby', '~> 3.0.0'
### Install from Git
If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
@@ -216,49 +220,42 @@
config.api_key['clientSecret'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['clientSecret'] = 'Bearer'
end
-api_instance = Buildium::AccountingApi.new
-budget_post_message = Buildium::BudgetPostMessage.new({name: 'name_example', property_id: 37, start_month: 'January', fiscal_year: 37, details: [Buildium::BudgetDetailsSaveMessage.new({gl_account_id: 37, monthly_amounts: Buildium::BudgetMonthlyAmountsSaveMessage.new({january: 3.56, february: 3.56, march: 3.56, april: 3.56, may: 3.56, june: 3.56, july: 3.56, august: 3.56, september: 3.56, october: 3.56, november: 3.56, december: 3.56})})]}) # BudgetPostMessage |
+api_instance = Buildium::AdministrationApi.new
begin
- #Create a budget
- result = api_instance.create_budget(budget_post_message)
+ #Retrieve account info
+ result = api_instance.get_account_info
p result
rescue Buildium::ApiError => e
- puts "Exception when calling AccountingApi->create_budget: #{e}"
+ puts "Exception when calling AdministrationApi->get_account_info: #{e}"
end
```
## Documentation for API Endpoints
All URIs are relative to *https://api.buildium.com*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
-*Buildium::AccountingApi* | [**create_budget**](docs/AccountingApi.md#create_budget) | **POST** /v1/budgets | Create a budget
-*Buildium::AccountingApi* | [**create_general_journal_entry**](docs/AccountingApi.md#create_general_journal_entry) | **POST** /v1/generalledger/journalentries | Create a general journal entry
-*Buildium::AccountingApi* | [**create_general_ledger_account**](docs/AccountingApi.md#create_general_ledger_account) | **POST** /v1/glaccounts | Create a general ledger account
-*Buildium::AccountingApi* | [**get_all_gl_accounts**](docs/AccountingApi.md#get_all_gl_accounts) | **GET** /v1/glaccounts | Retrieve all general ledger accounts
-*Buildium::AccountingApi* | [**get_all_transactions**](docs/AccountingApi.md#get_all_transactions) | **GET** /v1/generalledger/transactions | Retrieve all general ledger transactions
-*Buildium::AccountingApi* | [**get_budget_by_id**](docs/AccountingApi.md#get_budget_by_id) | **GET** /v1/budgets/{budgetId} | Retrieve a budget
-*Buildium::AccountingApi* | [**get_budgets**](docs/AccountingApi.md#get_budgets) | **GET** /v1/budgets | Retrieve all budgets
-*Buildium::AccountingApi* | [**get_general_ledger_entries**](docs/AccountingApi.md#get_general_ledger_entries) | **GET** /v1/generalledger | Retrieve all general ledger entries
-*Buildium::AccountingApi* | [**get_gl_account_balances**](docs/AccountingApi.md#get_gl_account_balances) | **GET** /v1/glaccounts/balances | Retrieve all general ledger account balances
-*Buildium::AccountingApi* | [**get_gl_account_by_id**](docs/AccountingApi.md#get_gl_account_by_id) | **GET** /v1/glaccounts/{glAccountId} | Retrieve a general ledger account
-*Buildium::AccountingApi* | [**get_transaction_by_id**](docs/AccountingApi.md#get_transaction_by_id) | **GET** /v1/generalledger/transactions/{transactionId} | Retrieve a general ledger transaction
-*Buildium::AccountingApi* | [**update_budget**](docs/AccountingApi.md#update_budget) | **PUT** /v1/budgets/{budgetId} | Update a budget
-*Buildium::AccountingApi* | [**update_general_journal_entry**](docs/AccountingApi.md#update_general_journal_entry) | **PUT** /v1/generalledger/journalentries/{journalEntryId} | Update a general journal entry
-*Buildium::AccountingApi* | [**update_gl_account**](docs/AccountingApi.md#update_gl_account) | **PUT** /v1/glaccounts/{glAccountId} | Update a general ledger account
*Buildium::AdministrationApi* | [**get_account_info**](docs/AdministrationApi.md#get_account_info) | **GET** /v1/administration/account | Retrieve account info
*Buildium::AdministrationApi* | [**get_accounting_lock_period_settings**](docs/AdministrationApi.md#get_accounting_lock_period_settings) | **GET** /v1/administration/accountinglockperiod | Retrieve accounting lock periods
*Buildium::AdministrationApi* | [**get_all_user_roles**](docs/AdministrationApi.md#get_all_user_roles) | **GET** /v1/userroles | Retrieve all user roles
*Buildium::AdministrationApi* | [**get_all_users**](docs/AdministrationApi.md#get_all_users) | **GET** /v1/users | Retrieve all users
*Buildium::AdministrationApi* | [**get_user_by_id**](docs/AdministrationApi.md#get_user_by_id) | **GET** /v1/users/{userId} | Retrieve a user
*Buildium::AdministrationApi* | [**get_user_role_by_id**](docs/AdministrationApi.md#get_user_role_by_id) | **GET** /v1/userroles/{userRoleId} | Retrieve a user role
+*Buildium::AppliancesApi* | [**create_association_appliance**](docs/AppliancesApi.md#create_association_appliance) | **POST** /v1/associations/appliances | Create an appliance
+*Buildium::AppliancesApi* | [**create_association_appliance_service_history**](docs/AppliancesApi.md#create_association_appliance_service_history) | **POST** /v1/associations/appliances/{applianceId}/servicehistory | Create a service history
+*Buildium::AppliancesApi* | [**delete_association_appliances**](docs/AppliancesApi.md#delete_association_appliances) | **DELETE** /v1/associations/appliances/{applianceId} | Delete an appliance
+*Buildium::AppliancesApi* | [**get_all_association_appliance_service_history**](docs/AppliancesApi.md#get_all_association_appliance_service_history) | **GET** /v1/associations/appliances/{applianceId}/servicehistory | Retrieve all service history
+*Buildium::AppliancesApi* | [**get_association_appliance_by_id**](docs/AppliancesApi.md#get_association_appliance_by_id) | **GET** /v1/associations/appliances/{applianceId} | Retrieve an appliance
+*Buildium::AppliancesApi* | [**get_association_appliance_service_history_by_id**](docs/AppliancesApi.md#get_association_appliance_service_history_by_id) | **GET** /v1/associations/appliances/{applianceId}/servicehistory/{serviceHistoryId} | Retrieve a service history
+*Buildium::AppliancesApi* | [**get_association_appliances**](docs/AppliancesApi.md#get_association_appliances) | **GET** /v1/associations/appliances | Retrieve all appliances
+*Buildium::AppliancesApi* | [**update_association_appliance**](docs/AppliancesApi.md#update_association_appliance) | **PUT** /v1/associations/appliances/{applianceId} | Update an appliance
*Buildium::ApplicantsApi* | [**create_applicant**](docs/ApplicantsApi.md#create_applicant) | **POST** /v1/applicants | Create an applicant
*Buildium::ApplicantsApi* | [**create_applicant_group**](docs/ApplicantsApi.md#create_applicant_group) | **POST** /v1/applicants/groups | Create an applicant group
*Buildium::ApplicantsApi* | [**create_applicant_note**](docs/ApplicantsApi.md#create_applicant_note) | **POST** /v1/applicants/{applicantId}/notes | Create an applicant note
*Buildium::ApplicantsApi* | [**create_application_group_note**](docs/ApplicantsApi.md#create_application_group_note) | **POST** /v1/applicants/groups/{applicantGroupId}/notes | Create an applicant group note
*Buildium::ApplicantsApi* | [**get_all_applicant_notes**](docs/ApplicantsApi.md#get_all_applicant_notes) | **GET** /v1/applicants/{applicantId}/notes | Retrieve all applicant notes
@@ -273,52 +270,25 @@
*Buildium::ApplicantsApi* | [**get_applications_for_applicant**](docs/ApplicantsApi.md#get_applications_for_applicant) | **GET** /v1/applicants/{applicantId}/applications | Retrieve all applications
*Buildium::ApplicantsApi* | [**update_applicant**](docs/ApplicantsApi.md#update_applicant) | **PUT** /v1/applicants/{applicantId} | Update an applicant
*Buildium::ApplicantsApi* | [**update_applicant_group**](docs/ApplicantsApi.md#update_applicant_group) | **PUT** /v1/applicants/groups/{applicantGroupId} | Update an applicant group
*Buildium::ApplicantsApi* | [**update_application**](docs/ApplicantsApi.md#update_application) | **PUT** /v1/applicants/{applicantId}/applications/{applicationId} | Update an application
*Buildium::ApplicantsApi* | [**update_application_group_note**](docs/ApplicantsApi.md#update_application_group_note) | **PUT** /v1/applicants/groups/{applicantGroupId}/notes/{noteId} | Update an applicant group note
-*Buildium::AssociationAppliancesApi* | [**create_association_appliance**](docs/AssociationAppliancesApi.md#create_association_appliance) | **POST** /v1/associations/appliances | Create an appliance
-*Buildium::AssociationAppliancesApi* | [**create_association_appliance_service_history**](docs/AssociationAppliancesApi.md#create_association_appliance_service_history) | **POST** /v1/associations/appliances/{applianceId}/servicehistory | Create a service history
-*Buildium::AssociationAppliancesApi* | [**delete_association_appliances**](docs/AssociationAppliancesApi.md#delete_association_appliances) | **DELETE** /v1/associations/appliances/{applianceId} | Delete an appliance
-*Buildium::AssociationAppliancesApi* | [**get_all_association_appliance_service_history**](docs/AssociationAppliancesApi.md#get_all_association_appliance_service_history) | **GET** /v1/associations/appliances/{applianceId}/servicehistory | Retrieve all service history
-*Buildium::AssociationAppliancesApi* | [**get_association_appliance_by_id**](docs/AssociationAppliancesApi.md#get_association_appliance_by_id) | **GET** /v1/associations/appliances/{applianceId} | Retrieve an appliance
-*Buildium::AssociationAppliancesApi* | [**get_association_appliance_service_history_by_id**](docs/AssociationAppliancesApi.md#get_association_appliance_service_history_by_id) | **GET** /v1/associations/appliances/{applianceId}/servicehistory/{serviceHistoryId} | Retrieve a service history
-*Buildium::AssociationAppliancesApi* | [**get_association_appliances**](docs/AssociationAppliancesApi.md#get_association_appliances) | **GET** /v1/associations/appliances | Retrieve all appliances
-*Buildium::AssociationAppliancesApi* | [**update_association_appliance**](docs/AssociationAppliancesApi.md#update_association_appliance) | **PUT** /v1/associations/appliances/{applianceId} | Update an appliance
+*Buildium::AssociationMeterReadingsApi* | [**delete_meter_reading_details_for_association**](docs/AssociationMeterReadingsApi.md#delete_meter_reading_details_for_association) | **DELETE** /v1/associations/{associationId}/meterreadings/summary | Delete meter reading details for a given date
+*Buildium::AssociationMeterReadingsApi* | [**get_association_meter_reading_details_async**](docs/AssociationMeterReadingsApi.md#get_association_meter_reading_details_async) | **GET** /v1/associations/{associationId}/meterreadings/summary | Retrieve all meter reading details
+*Buildium::AssociationMeterReadingsApi* | [**get_meter_readings_for_association**](docs/AssociationMeterReadingsApi.md#get_meter_readings_for_association) | **GET** /v1/associations/{associationId}/meterreadings | Retrieve all meter readings
+*Buildium::AssociationMeterReadingsApi* | [**upsert_association_meter_reading_details_async**](docs/AssociationMeterReadingsApi.md#upsert_association_meter_reading_details_async) | **PUT** /v1/associations/{associationId}/meterreadings/summary | Create/Update meter reading details
*Buildium::AssociationOwnersApi* | [**create_association_owner**](docs/AssociationOwnersApi.md#create_association_owner) | **POST** /v1/associations/owners | Create an owner
*Buildium::AssociationOwnersApi* | [**create_association_owner_note**](docs/AssociationOwnersApi.md#create_association_owner_note) | **POST** /v1/associations/owners/{ownerId}/notes | Create a note
*Buildium::AssociationOwnersApi* | [**get_all_association_owners**](docs/AssociationOwnersApi.md#get_all_association_owners) | **GET** /v1/associations/owners | Retrieve all owners
*Buildium::AssociationOwnersApi* | [**get_association_owner_by_id**](docs/AssociationOwnersApi.md#get_association_owner_by_id) | **GET** /v1/associations/owners/{ownerId} | Retrieve an owner
*Buildium::AssociationOwnersApi* | [**get_association_owner_note_by_note_id**](docs/AssociationOwnersApi.md#get_association_owner_note_by_note_id) | **GET** /v1/associations/owners/{ownerId}/notes/{noteId} | Retrieve a note
*Buildium::AssociationOwnersApi* | [**get_association_owner_notes**](docs/AssociationOwnersApi.md#get_association_owner_notes) | **GET** /v1/associations/owners/{ownerId}/notes | Retrieve all notes
+*Buildium::AssociationOwnersApi* | [**get_unit_occupancy_statuses_by_id_for_association_owner**](docs/AssociationOwnersApi.md#get_unit_occupancy_statuses_by_id_for_association_owner) | **GET** /v1/associations/owners/{ownerId}/units/{unitId} | Retrieve an occupancy status
+*Buildium::AssociationOwnersApi* | [**get_unit_occupancy_statuses_for_association_owner**](docs/AssociationOwnersApi.md#get_unit_occupancy_statuses_for_association_owner) | **GET** /v1/associations/owners/{ownerId}/units | Retrieve all occupancy statuses
*Buildium::AssociationOwnersApi* | [**update_association_owner**](docs/AssociationOwnersApi.md#update_association_owner) | **PUT** /v1/associations/owners/{ownerId} | Update an owner
*Buildium::AssociationOwnersApi* | [**update_association_owner_note**](docs/AssociationOwnersApi.md#update_association_owner_note) | **PUT** /v1/associations/owners/{ownerId}/notes/{noteId} | Update a note
-*Buildium::AssociationOwnershipAccountsApi* | [**create_association_ownership_account**](docs/AssociationOwnershipAccountsApi.md#create_association_ownership_account) | **POST** /v1/associations/ownershipaccounts | Create an ownership account
-*Buildium::AssociationOwnershipAccountsApi* | [**create_association_ownership_account_note**](docs/AssociationOwnershipAccountsApi.md#create_association_ownership_account_note) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/notes | Create a note
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_account_auto_allocated_payment**](docs/AssociationOwnershipAccountsApi.md#create_ownership_account_auto_allocated_payment) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/autoallocatedpayments | Create an ownership account ledger payment with automatic allocations
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_account_credit**](docs/AssociationOwnershipAccountsApi.md#create_ownership_account_credit) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/credits | Create a ledger credit
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_account_credit_recurring_transaction**](docs/AssociationOwnershipAccountsApi.md#create_ownership_account_credit_recurring_transaction) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcredits | Create a recurring credit
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_account_deposit_withholding**](docs/AssociationOwnershipAccountsApi.md#create_ownership_account_deposit_withholding) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/applieddeposits | Create a deposit withholding
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_account_ledger_charge**](docs/AssociationOwnershipAccountsApi.md#create_ownership_account_ledger_charge) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/charges | Create a ledger charge
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_account_ledger_payment**](docs/AssociationOwnershipAccountsApi.md#create_ownership_account_ledger_payment) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/payments | Create a ledger payment
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_account_recurring_payment**](docs/AssociationOwnershipAccountsApi.md#create_ownership_account_recurring_payment) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringpayments | Create a recurring payment
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_account_refund**](docs/AssociationOwnershipAccountsApi.md#create_ownership_account_refund) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/refunds | Create a refund
-*Buildium::AssociationOwnershipAccountsApi* | [**create_ownership_accounts_charge_recurring_transaction**](docs/AssociationOwnershipAccountsApi.md#create_ownership_accounts_charge_recurring_transaction) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcharges | Create a recurring charge
-*Buildium::AssociationOwnershipAccountsApi* | [**get_all_ownership_accounts**](docs/AssociationOwnershipAccountsApi.md#get_all_ownership_accounts) | **GET** /v1/associations/ownershipaccounts | Retrieve all ownership accounts
-*Buildium::AssociationOwnershipAccountsApi* | [**get_association_ownership_account_note_by_note_id**](docs/AssociationOwnershipAccountsApi.md#get_association_ownership_account_note_by_note_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/notes/{noteId} | Retrieve a note
-*Buildium::AssociationOwnershipAccountsApi* | [**get_association_ownership_account_notes**](docs/AssociationOwnershipAccountsApi.md#get_association_ownership_account_notes) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/notes | Retrieve all notes
-*Buildium::AssociationOwnershipAccountsApi* | [**get_association_recurring_transaction**](docs/AssociationOwnershipAccountsApi.md#get_association_recurring_transaction) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringtransactions | Retrieve all recurring transactions
-*Buildium::AssociationOwnershipAccountsApi* | [**get_ownership_account_by_id**](docs/AssociationOwnershipAccountsApi.md#get_ownership_account_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId} | Retrieve an ownership account
-*Buildium::AssociationOwnershipAccountsApi* | [**get_ownership_account_ledger**](docs/AssociationOwnershipAccountsApi.md#get_ownership_account_ledger) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/transactions | Retrieve ownership account transactions
-*Buildium::AssociationOwnershipAccountsApi* | [**get_ownership_account_outstanding_balances**](docs/AssociationOwnershipAccountsApi.md#get_ownership_account_outstanding_balances) | **GET** /v1/associations/ownershipaccounts/outstandingbalances | Retrieve all outstanding balances
-*Buildium::AssociationOwnershipAccountsApi* | [**get_ownership_account_recurring_credit_by_id**](docs/AssociationOwnershipAccountsApi.md#get_ownership_account_recurring_credit_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcredits/{transactionId} | Retrieve a recurring credit
-*Buildium::AssociationOwnershipAccountsApi* | [**get_ownership_account_refund_by_id**](docs/AssociationOwnershipAccountsApi.md#get_ownership_account_refund_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/refunds/{refundId} | Retrieve a refund
-*Buildium::AssociationOwnershipAccountsApi* | [**get_ownership_account_transaction_by_id**](docs/AssociationOwnershipAccountsApi.md#get_ownership_account_transaction_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/transactions/{transactionId} | Retrieve an ownership account transaction
-*Buildium::AssociationOwnershipAccountsApi* | [**get_ownership_accounts_charge_recurring_transaction_by_id**](docs/AssociationOwnershipAccountsApi.md#get_ownership_accounts_charge_recurring_transaction_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcharges/{transactionId} | Retrieve a recurring charge
-*Buildium::AssociationOwnershipAccountsApi* | [**get_recurring_ownership_account_payments_by_id**](docs/AssociationOwnershipAccountsApi.md#get_recurring_ownership_account_payments_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringpayments/{paymentId} | Retrieve a recurring payment
-*Buildium::AssociationOwnershipAccountsApi* | [**update_association_ownership_account**](docs/AssociationOwnershipAccountsApi.md#update_association_ownership_account) | **PUT** /v1/associations/ownershipaccounts/{ownershipAccountId} | Update an ownership account
-*Buildium::AssociationOwnershipAccountsApi* | [**update_association_ownership_account_note**](docs/AssociationOwnershipAccountsApi.md#update_association_ownership_account_note) | **PUT** /v1/associations/ownershipaccounts/{ownershipAccountId}/notes/{noteId} | Update a note
-*Buildium::AssociationOwnershipAccountsApi* | [**update_ownership_account_charge**](docs/AssociationOwnershipAccountsApi.md#update_ownership_account_charge) | **PUT** /v1/associations/ownershipaccounts/{ownershipAccountId}/charges/{chargeId} | Update a charge
+*Buildium::AssociationOwnersApi* | [**update_association_owner_occupancy_status**](docs/AssociationOwnersApi.md#update_association_owner_occupancy_status) | **PUT** /v1/associations/owners/{ownerId}/units/{unitId} | Update occupancy status
*Buildium::AssociationTenantsApi* | [**create_association_tenant**](docs/AssociationTenantsApi.md#create_association_tenant) | **POST** /v1/associations/tenants | Create a tenant
*Buildium::AssociationTenantsApi* | [**create_association_tenant_note**](docs/AssociationTenantsApi.md#create_association_tenant_note) | **POST** /v1/associations/tenants/{tenantId}/notes | Create a note
*Buildium::AssociationTenantsApi* | [**get_association_tenant_by_id**](docs/AssociationTenantsApi.md#get_association_tenant_by_id) | **GET** /v1/associations/tenants/{tenantId} | Retrieve a tenant
*Buildium::AssociationTenantsApi* | [**get_association_tenant_note_by_id**](docs/AssociationTenantsApi.md#get_association_tenant_note_by_id) | **GET** /v1/associations/tenants/{tenantId}/notes/{noteId} | Retrieve a note
*Buildium::AssociationTenantsApi* | [**get_association_tenant_notes**](docs/AssociationTenantsApi.md#get_association_tenant_notes) | **GET** /v1/associations/tenants/{tenantId}/notes | Retrieve all notes
@@ -333,74 +303,81 @@
*Buildium::AssociationUnitsApi* | [**get_association_unit_notes**](docs/AssociationUnitsApi.md#get_association_unit_notes) | **GET** /v1/associations/units/{unitId}/notes | Retrieve all notes
*Buildium::AssociationUnitsApi* | [**update_association_unit**](docs/AssociationUnitsApi.md#update_association_unit) | **PUT** /v1/associations/units/{unitId} | Update a unit
*Buildium::AssociationUnitsApi* | [**update_association_unit_note**](docs/AssociationUnitsApi.md#update_association_unit_note) | **PUT** /v1/associations/units/{unitId}/notes/{noteId} | Update a note
*Buildium::AssociationsApi* | [**create_association**](docs/AssociationsApi.md#create_association) | **POST** /v1/associations | Create an association
*Buildium::AssociationsApi* | [**create_association_note**](docs/AssociationsApi.md#create_association_note) | **POST** /v1/associations/{associationId}/notes | Create a note
-*Buildium::AssociationsApi* | [**create_board_member**](docs/AssociationsApi.md#create_board_member) | **POST** /v1/associations/{associationId}/boardmembers | Create a board member
-*Buildium::AssociationsApi* | [**delete_board_member**](docs/AssociationsApi.md#delete_board_member) | **DELETE** /v1/associations/{associationId}/boardmembers/{boardMemberId} | Delete a board member
-*Buildium::AssociationsApi* | [**get_all_association_board_members**](docs/AssociationsApi.md#get_all_association_board_members) | **GET** /v1/associations/{associationId}/boardmembers | Retrieve all board members
-*Buildium::AssociationsApi* | [**get_association_board_member_by_id**](docs/AssociationsApi.md#get_association_board_member_by_id) | **GET** /v1/associations/{associationId}/boardmembers/{boardMemberId} | Retrieve a board member
*Buildium::AssociationsApi* | [**get_association_by_id**](docs/AssociationsApi.md#get_association_by_id) | **GET** /v1/associations/{associationId} | Retrieve an association
*Buildium::AssociationsApi* | [**get_association_note_by_note_id**](docs/AssociationsApi.md#get_association_note_by_note_id) | **GET** /v1/associations/{associationId}/notes/{noteId} | Retrieve a note
*Buildium::AssociationsApi* | [**get_association_notes**](docs/AssociationsApi.md#get_association_notes) | **GET** /v1/associations/{associationId}/notes | Retrieve all notes
*Buildium::AssociationsApi* | [**get_association_preferred_vendors**](docs/AssociationsApi.md#get_association_preferred_vendors) | **GET** /v1/associations/{associationId}/vendors | Retrieve all preferred vendors
*Buildium::AssociationsApi* | [**get_associations**](docs/AssociationsApi.md#get_associations) | **GET** /v1/associations | Retrieve all associations
*Buildium::AssociationsApi* | [**get_bank_lock_box_data**](docs/AssociationsApi.md#get_bank_lock_box_data) | **GET** /v1/associations/banklockboxdata | Retrieve all association bank lockbox data
*Buildium::AssociationsApi* | [**get_e_pay_settings_for_association_by_id**](docs/AssociationsApi.md#get_e_pay_settings_for_association_by_id) | **GET** /v1/associations/{associationId}/epaysettings | Retrieve ePay settings
-*Buildium::AssociationsApi* | [**get_unit_occupancy_statuses_by_id_for_association_owner**](docs/AssociationsApi.md#get_unit_occupancy_statuses_by_id_for_association_owner) | **GET** /v1/associations/owners/{ownerId}/units/{unitId} | Retrieve an occupancy status
-*Buildium::AssociationsApi* | [**get_unit_occupancy_statuses_for_association_owner**](docs/AssociationsApi.md#get_unit_occupancy_statuses_for_association_owner) | **GET** /v1/associations/owners/{ownerId}/units | Retrieve all occupancy statuses
*Buildium::AssociationsApi* | [**inactivate_association**](docs/AssociationsApi.md#inactivate_association) | **POST** /v1/associations/{associationId}/inactivationrequest | Inactivate an association
*Buildium::AssociationsApi* | [**reactivate_association**](docs/AssociationsApi.md#reactivate_association) | **POST** /v1/associations/{associationId}/reactivationrequest | Reactivate an association
*Buildium::AssociationsApi* | [**update_association**](docs/AssociationsApi.md#update_association) | **PUT** /v1/associations/{associationId} | Update an association
*Buildium::AssociationsApi* | [**update_association_note**](docs/AssociationsApi.md#update_association_note) | **PUT** /v1/associations/{associationId}/notes/{noteId} | Update a note
-*Buildium::AssociationsApi* | [**update_association_owner_occupancy_status**](docs/AssociationsApi.md#update_association_owner_occupancy_status) | **PUT** /v1/associations/owners/{ownerId}/units/{unitId} | Update occupancy status
*Buildium::AssociationsApi* | [**update_association_preferred_vendors**](docs/AssociationsApi.md#update_association_preferred_vendors) | **PUT** /v1/associations/{associationId}/vendors | Update preferred vendors
-*Buildium::AssociationsApi* | [**update_board_member**](docs/AssociationsApi.md#update_board_member) | **PUT** /v1/associations/{associationId}/boardmembers/{boardMemberId} | Update a board member
*Buildium::AssociationsApi* | [**update_e_pay_settings_for_association**](docs/AssociationsApi.md#update_e_pay_settings_for_association) | **PUT** /v1/associations/{associationId}/epaysettings | Update ePay settings
*Buildium::BankAccountsApi* | [**create_bank_account**](docs/BankAccountsApi.md#create_bank_account) | **POST** /v1/bankaccounts | Create a bank account
*Buildium::BankAccountsApi* | [**create_bank_account_check**](docs/BankAccountsApi.md#create_bank_account_check) | **POST** /v1/bankaccounts/{bankAccountId}/checks | Create a check
*Buildium::BankAccountsApi* | [**create_bank_account_deposit**](docs/BankAccountsApi.md#create_bank_account_deposit) | **POST** /v1/bankaccounts/{bankAccountId}/deposits | Create a deposit
*Buildium::BankAccountsApi* | [**create_bank_account_transfer**](docs/BankAccountsApi.md#create_bank_account_transfer) | **POST** /v1/bankaccounts/{bankAccountId}/transfers | Create a transfer
+*Buildium::BankAccountsApi* | [**create_check_upload_file_request**](docs/BankAccountsApi.md#create_check_upload_file_request) | **POST** /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files/uploadrequests | Upload a file for a check
*Buildium::BankAccountsApi* | [**create_quick_deposit**](docs/BankAccountsApi.md#create_quick_deposit) | **POST** /v1/bankaccounts/{bankAccountId}/quickdeposits | Create a quick deposit
*Buildium::BankAccountsApi* | [**create_withdrawal_for_bank_account**](docs/BankAccountsApi.md#create_withdrawal_for_bank_account) | **POST** /v1/bankaccounts/{bankAccountId}/withdrawals | Create a withdrawal
+*Buildium::BankAccountsApi* | [**delete_bank_account_check_file**](docs/BankAccountsApi.md#delete_bank_account_check_file) | **DELETE** /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files/{fileId} | Delete a file for a check
+*Buildium::BankAccountsApi* | [**download_check_file**](docs/BankAccountsApi.md#download_check_file) | **POST** /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files/{fileId}/downloadrequests | Download a file for a check
*Buildium::BankAccountsApi* | [**get_all_bank_accounts**](docs/BankAccountsApi.md#get_all_bank_accounts) | **GET** /v1/bankaccounts | Retrieve all bank accounts
*Buildium::BankAccountsApi* | [**get_all_quick_deposits**](docs/BankAccountsApi.md#get_all_quick_deposits) | **GET** /v1/bankaccounts/{bankAccountId}/quickdeposits | Retrieve all quick deposits
*Buildium::BankAccountsApi* | [**get_bank_account**](docs/BankAccountsApi.md#get_bank_account) | **GET** /v1/bankaccounts/{bankAccountId} | Retrieve a bank account
+*Buildium::BankAccountsApi* | [**get_bank_account_check_file_by_id**](docs/BankAccountsApi.md#get_bank_account_check_file_by_id) | **GET** /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files/{fileId} | Retrieve a file for a check
*Buildium::BankAccountsApi* | [**get_bank_account_checks**](docs/BankAccountsApi.md#get_bank_account_checks) | **GET** /v1/bankaccounts/{bankAccountId}/checks | Retrieve all checks
*Buildium::BankAccountsApi* | [**get_bank_account_deposit_by_id**](docs/BankAccountsApi.md#get_bank_account_deposit_by_id) | **GET** /v1/bankaccounts/{bankAccountId}/deposits/{depositId} | Retrieve a deposit
*Buildium::BankAccountsApi* | [**get_bank_account_deposits**](docs/BankAccountsApi.md#get_bank_account_deposits) | **GET** /v1/bankaccounts/{bankAccountId}/deposits | Retrieve all deposits
*Buildium::BankAccountsApi* | [**get_bank_account_transaction_by_id**](docs/BankAccountsApi.md#get_bank_account_transaction_by_id) | **GET** /v1/bankaccounts/{bankAccountId}/transactions/{transactionId} | Retrieve a transaction
*Buildium::BankAccountsApi* | [**get_bank_account_transactions**](docs/BankAccountsApi.md#get_bank_account_transactions) | **GET** /v1/bankaccounts/{bankAccountId}/transactions | Retrieve all transactions
*Buildium::BankAccountsApi* | [**get_bank_account_transfer_by_id**](docs/BankAccountsApi.md#get_bank_account_transfer_by_id) | **GET** /v1/bankaccounts/{bankAccountId}/transfers/{transferId} | Retrieve a transfer
*Buildium::BankAccountsApi* | [**get_bank_account_transfers**](docs/BankAccountsApi.md#get_bank_account_transfers) | **GET** /v1/bankaccounts/{bankAccountId}/transfers | Retrieve all transfers
*Buildium::BankAccountsApi* | [**get_bank_account_withdrawal_by_id**](docs/BankAccountsApi.md#get_bank_account_withdrawal_by_id) | **GET** /v1/bankaccounts/{bankAccountId}/withdrawals/{withdrawalId} | Retrieve a withdrawal
*Buildium::BankAccountsApi* | [**get_bank_account_withdrawals**](docs/BankAccountsApi.md#get_bank_account_withdrawals) | **GET** /v1/bankaccounts/{bankAccountId}/withdrawals | Retrieve all withdrawals
*Buildium::BankAccountsApi* | [**get_check_for_bank_account**](docs/BankAccountsApi.md#get_check_for_bank_account) | **GET** /v1/bankaccounts/{bankAccountId}/checks/{checkId} | Retrieve a check
+*Buildium::BankAccountsApi* | [**get_files_for_bank_account_check**](docs/BankAccountsApi.md#get_files_for_bank_account_check) | **GET** /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files | Retrieve all files for a check
*Buildium::BankAccountsApi* | [**get_quick_deposit_by_id**](docs/BankAccountsApi.md#get_quick_deposit_by_id) | **GET** /v1/bankaccounts/{bankAccountId}/quickdeposits/{quickDepositId} | Retrieve a quick deposit
*Buildium::BankAccountsApi* | [**get_undeposited_funds**](docs/BankAccountsApi.md#get_undeposited_funds) | **GET** /v1/bankaccounts/{bankAccountId}/undepositedfunds | Retrieve all undeposited funds
*Buildium::BankAccountsApi* | [**update_bank_account**](docs/BankAccountsApi.md#update_bank_account) | **PUT** /v1/bankaccounts/{bankAccountId} | Update a bank account
*Buildium::BankAccountsApi* | [**update_bank_account_deposit**](docs/BankAccountsApi.md#update_bank_account_deposit) | **PUT** /v1/bankaccounts/{bankAccountId}/deposits/{depositId} | Update a deposit
*Buildium::BankAccountsApi* | [**update_bank_account_transfer**](docs/BankAccountsApi.md#update_bank_account_transfer) | **PUT** /v1/bankaccounts/{bankAccountId}/transfers/{transferId} | Update a transfer
*Buildium::BankAccountsApi* | [**update_bank_account_withdrawal**](docs/BankAccountsApi.md#update_bank_account_withdrawal) | **PUT** /v1/bankaccounts/{bankAccountId}/withdrawals/{withdrawalId} | Update a withdrawal
*Buildium::BankAccountsApi* | [**update_check_for_bank_account**](docs/BankAccountsApi.md#update_check_for_bank_account) | **PUT** /v1/bankaccounts/{bankAccountId}/checks/{checkId} | Update a check
*Buildium::BankAccountsApi* | [**update_quick_deposit**](docs/BankAccountsApi.md#update_quick_deposit) | **PUT** /v1/bankaccounts/{bankAccountId}/quickdeposits/{quickDepositId} | Update a quick deposit
*Buildium::BillsApi* | [**create_bill**](docs/BillsApi.md#create_bill) | **POST** /v1/bills | Create a bill
*Buildium::BillsApi* | [**create_bill_payment**](docs/BillsApi.md#create_bill_payment) | **POST** /v1/bills/{billId}/payments | Create a bill payment
+*Buildium::BillsApi* | [**create_multiple_bill_payments**](docs/BillsApi.md#create_multiple_bill_payments) | **POST** /v1/bills/payments | Create a payment for multiple bills with one check
*Buildium::BillsApi* | [**create_upload_file_request**](docs/BillsApi.md#create_upload_file_request) | **POST** /v1/bills/{billId}/files/uploadrequests | Upload a bill file
*Buildium::BillsApi* | [**delete_bill_file**](docs/BillsApi.md#delete_bill_file) | **DELETE** /v1/bills/{billId}/files/{fileId} | Delete a bill file
*Buildium::BillsApi* | [**download_bill_file**](docs/BillsApi.md#download_bill_file) | **POST** /v1/bills/{billId}/files/{fileId}/downloadrequest | Download a bill file
*Buildium::BillsApi* | [**get_all_files_for_bill**](docs/BillsApi.md#get_all_files_for_bill) | **GET** /v1/bills/{billId}/files | Retrieve all files for a bill
*Buildium::BillsApi* | [**get_bill_by_id**](docs/BillsApi.md#get_bill_by_id) | **GET** /v1/bills/{billId} | Retrieve a bill
*Buildium::BillsApi* | [**get_bill_file_by_id**](docs/BillsApi.md#get_bill_file_by_id) | **GET** /v1/bills/{billId}/files/{fileId} | Retrieve a file for a bill
*Buildium::BillsApi* | [**get_bill_payment_by_id**](docs/BillsApi.md#get_bill_payment_by_id) | **GET** /v1/bills/{billId}/payments/{paymentId} | Retrieve a bill payment
*Buildium::BillsApi* | [**get_bill_payments**](docs/BillsApi.md#get_bill_payments) | **GET** /v1/bills/{billId}/payments | Retrieve all bill payments
*Buildium::BillsApi* | [**get_bills_async**](docs/BillsApi.md#get_bills_async) | **GET** /v1/bills | Retrieve all bills
*Buildium::BillsApi* | [**update_bill**](docs/BillsApi.md#update_bill) | **PUT** /v1/bills/{billId} | Update a bill
+*Buildium::BoardMembersApi* | [**create_board_member**](docs/BoardMembersApi.md#create_board_member) | **POST** /v1/associations/{associationId}/boardmembers | Create a board member
+*Buildium::BoardMembersApi* | [**delete_board_member**](docs/BoardMembersApi.md#delete_board_member) | **DELETE** /v1/associations/{associationId}/boardmembers/{boardMemberId} | Delete a board member
+*Buildium::BoardMembersApi* | [**get_all_association_board_members**](docs/BoardMembersApi.md#get_all_association_board_members) | **GET** /v1/associations/{associationId}/boardmembers | Retrieve all board members
+*Buildium::BoardMembersApi* | [**get_association_board_member_by_id**](docs/BoardMembersApi.md#get_association_board_member_by_id) | **GET** /v1/associations/{associationId}/boardmembers/{boardMemberId} | Retrieve a board member
+*Buildium::BoardMembersApi* | [**update_board_member**](docs/BoardMembersApi.md#update_board_member) | **PUT** /v1/associations/{associationId}/boardmembers/{boardMemberId} | Update a board member
+*Buildium::BudgetsApi* | [**create_budget**](docs/BudgetsApi.md#create_budget) | **POST** /v1/budgets | Create a budget
+*Buildium::BudgetsApi* | [**get_budget_by_id**](docs/BudgetsApi.md#get_budget_by_id) | **GET** /v1/budgets/{budgetId} | Retrieve a budget
+*Buildium::BudgetsApi* | [**get_budgets**](docs/BudgetsApi.md#get_budgets) | **GET** /v1/budgets | Retrieve all budgets
+*Buildium::BudgetsApi* | [**update_budget**](docs/BudgetsApi.md#update_budget) | **PUT** /v1/budgets/{budgetId} | Update a budget
*Buildium::ClientLeadsApi* | [**get_client_leads**](docs/ClientLeadsApi.md#get_client_leads) | **GET** /v1/clientleads | Retrieve all client leads
*Buildium::ClientLeadsApi* | [**get_prospective_client**](docs/ClientLeadsApi.md#get_prospective_client) | **GET** /v1/clientleads/{clientLeadId} | Retrieve a client lead
*Buildium::CommunicationsApi* | [**create_announcement**](docs/CommunicationsApi.md#create_announcement) | **POST** /v1/communications/announcements | Create an announcement
-*Buildium::CommunicationsApi* | [**create_email**](docs/CommunicationsApi.md#create_email) | **POST** /v1/communications/emails | Create an email.
+*Buildium::CommunicationsApi* | [**create_email**](docs/CommunicationsApi.md#create_email) | **POST** /v1/communications/emails | Send an email
*Buildium::CommunicationsApi* | [**create_phone_log**](docs/CommunicationsApi.md#create_phone_log) | **POST** /v1/communications/phonelogs | Create a phone log
*Buildium::CommunicationsApi* | [**expire_announcement**](docs/CommunicationsApi.md#expire_announcement) | **POST** /v1/communications/announcements/{announcementId}/expirationrequest | Expire an announcement
*Buildium::CommunicationsApi* | [**get_all_announcements**](docs/CommunicationsApi.md#get_all_announcements) | **GET** /v1/communications/announcements | Retrieve all announcements
*Buildium::CommunicationsApi* | [**get_announcement_by_id**](docs/CommunicationsApi.md#get_announcement_by_id) | **GET** /v1/communications/announcements/{announcementId} | Retrieve an announcement
*Buildium::CommunicationsApi* | [**get_announcement_properties**](docs/CommunicationsApi.md#get_announcement_properties) | **GET** /v1/communications/announcements/{announcementId}/properties | Retrieve all announcement properties
@@ -410,68 +387,112 @@
*Buildium::CommunicationsApi* | [**get_mailing_templates**](docs/CommunicationsApi.md#get_mailing_templates) | **GET** /v1/communications/templates | Retrieve all communication templates
*Buildium::CommunicationsApi* | [**get_mailing_templates_by_id**](docs/CommunicationsApi.md#get_mailing_templates_by_id) | **GET** /v1/communications/templates/{templateId} | Retrieve a communication template
*Buildium::CommunicationsApi* | [**get_phone_log_by_id**](docs/CommunicationsApi.md#get_phone_log_by_id) | **GET** /v1/communications/phonelogs/{phoneLogId} | Retrieve a phone log
*Buildium::CommunicationsApi* | [**get_phone_logs**](docs/CommunicationsApi.md#get_phone_logs) | **GET** /v1/communications/phonelogs | Retrieve all phone logs
*Buildium::CommunicationsApi* | [**update_phone_log**](docs/CommunicationsApi.md#update_phone_log) | **PUT** /v1/communications/phonelogs/{phoneLogId} | Update a phone log
+*Buildium::ContactRequestsApi* | [**create_contact_request_task**](docs/ContactRequestsApi.md#create_contact_request_task) | **POST** /v1/tasks/contactrequests | Create a contact request
+*Buildium::ContactRequestsApi* | [**get_contact_request_task_by_id**](docs/ContactRequestsApi.md#get_contact_request_task_by_id) | **GET** /v1/tasks/contactrequests/{contactRequestTaskId} | Retrieve a contact request
+*Buildium::ContactRequestsApi* | [**get_contact_request_tasks**](docs/ContactRequestsApi.md#get_contact_request_tasks) | **GET** /v1/tasks/contactrequests | Retrieve all contact requests
+*Buildium::ContactRequestsApi* | [**update_contact_request_task**](docs/ContactRequestsApi.md#update_contact_request_task) | **PUT** /v1/tasks/contactrequests/{contactRequestTaskId} | Update a contact request
*Buildium::FilesApi* | [**create_file_category**](docs/FilesApi.md#create_file_category) | **POST** /v1/files/categories | Create a category
*Buildium::FilesApi* | [**create_upload_file_request_async**](docs/FilesApi.md#create_upload_file_request_async) | **POST** /v1/files/uploadrequests | Upload a file
*Buildium::FilesApi* | [**get_file_by_id**](docs/FilesApi.md#get_file_by_id) | **GET** /v1/files/{fileId} | Retrieve a file
*Buildium::FilesApi* | [**get_file_categories**](docs/FilesApi.md#get_file_categories) | **GET** /v1/files/categories | Retrieve all categories
*Buildium::FilesApi* | [**get_file_category_by_id**](docs/FilesApi.md#get_file_category_by_id) | **GET** /v1/files/categories/{fileCategoryId} | Retrieve a category
*Buildium::FilesApi* | [**get_file_download_url_async**](docs/FilesApi.md#get_file_download_url_async) | **POST** /v1/files/{fileId}/downloadrequest | Download a file
+*Buildium::FilesApi* | [**get_file_share_settings_by_id**](docs/FilesApi.md#get_file_share_settings_by_id) | **GET** /v1/files/{fileId}/sharing | Retrieve file share settings
*Buildium::FilesApi* | [**get_files**](docs/FilesApi.md#get_files) | **GET** /v1/files | Retrieve all files
*Buildium::FilesApi* | [**update_file**](docs/FilesApi.md#update_file) | **PUT** /v1/files/{fileId} | Update a file
*Buildium::FilesApi* | [**update_file_category**](docs/FilesApi.md#update_file_category) | **PUT** /v1/files/categories/{fileCategoryId} | Update a category
+*Buildium::FilesApi* | [**update_file_sharing_setting**](docs/FilesApi.md#update_file_sharing_setting) | **PUT** /v1/files/{fileId}/sharing | Update file share settings
+*Buildium::GeneralLedgerApi* | [**create_general_journal_entry**](docs/GeneralLedgerApi.md#create_general_journal_entry) | **POST** /v1/generalledger/journalentries | Create a general journal entry
+*Buildium::GeneralLedgerApi* | [**create_general_ledger_account**](docs/GeneralLedgerApi.md#create_general_ledger_account) | **POST** /v1/glaccounts | Create a general ledger account
+*Buildium::GeneralLedgerApi* | [**get_all_gl_accounts**](docs/GeneralLedgerApi.md#get_all_gl_accounts) | **GET** /v1/glaccounts | Retrieve all general ledger accounts
+*Buildium::GeneralLedgerApi* | [**get_all_transactions**](docs/GeneralLedgerApi.md#get_all_transactions) | **GET** /v1/generalledger/transactions | Retrieve all general ledger transactions
+*Buildium::GeneralLedgerApi* | [**get_general_ledger_entries**](docs/GeneralLedgerApi.md#get_general_ledger_entries) | **GET** /v1/generalledger | Retrieve all general ledger entries
+*Buildium::GeneralLedgerApi* | [**get_gl_account_balances**](docs/GeneralLedgerApi.md#get_gl_account_balances) | **GET** /v1/glaccounts/balances | Retrieve all general ledger account balances
+*Buildium::GeneralLedgerApi* | [**get_gl_account_by_id**](docs/GeneralLedgerApi.md#get_gl_account_by_id) | **GET** /v1/glaccounts/{glAccountId} | Retrieve a general ledger account
+*Buildium::GeneralLedgerApi* | [**get_transaction_by_id**](docs/GeneralLedgerApi.md#get_transaction_by_id) | **GET** /v1/generalledger/transactions/{transactionId} | Retrieve a general ledger transaction
+*Buildium::GeneralLedgerApi* | [**update_general_journal_entry**](docs/GeneralLedgerApi.md#update_general_journal_entry) | **PUT** /v1/generalledger/journalentries/{journalEntryId} | Update a general journal entry
+*Buildium::GeneralLedgerApi* | [**update_gl_account**](docs/GeneralLedgerApi.md#update_gl_account) | **PUT** /v1/glaccounts/{glAccountId} | Update a general ledger account
+*Buildium::LeaseTransactionsApi* | [**create_lease_auto_allocated_payment**](docs/LeaseTransactionsApi.md#create_lease_auto_allocated_payment) | **POST** /v1/leases/{leaseId}/autoallocatedpayments | Create a payment (auto allocated)
+*Buildium::LeaseTransactionsApi* | [**create_lease_charge_recurring_transaction**](docs/LeaseTransactionsApi.md#create_lease_charge_recurring_transaction) | **POST** /v1/leases/{leaseId}/recurringcharges | Create a recurring charge
+*Buildium::LeaseTransactionsApi* | [**create_lease_credit**](docs/LeaseTransactionsApi.md#create_lease_credit) | **POST** /v1/leases/{leaseId}/credits | Create a credit
+*Buildium::LeaseTransactionsApi* | [**create_lease_credit_recurring_transaction**](docs/LeaseTransactionsApi.md#create_lease_credit_recurring_transaction) | **POST** /v1/leases/{leaseId}/recurringcredits | Create a recurring credit
+*Buildium::LeaseTransactionsApi* | [**create_lease_ledger_charge**](docs/LeaseTransactionsApi.md#create_lease_ledger_charge) | **POST** /v1/leases/{leaseId}/charges | Create a charge
+*Buildium::LeaseTransactionsApi* | [**create_lease_ledger_deposit_withholding**](docs/LeaseTransactionsApi.md#create_lease_ledger_deposit_withholding) | **POST** /v1/leases/{leaseId}/applieddeposits | Create a deposit withholding
+*Buildium::LeaseTransactionsApi* | [**create_lease_ledger_refund**](docs/LeaseTransactionsApi.md#create_lease_ledger_refund) | **POST** /v1/leases/{leaseId}/refunds | Create a refund
+*Buildium::LeaseTransactionsApi* | [**create_lease_recurring_payment**](docs/LeaseTransactionsApi.md#create_lease_recurring_payment) | **POST** /v1/leases/{leaseId}/recurringpayments | Create a recurring payment
+*Buildium::LeaseTransactionsApi* | [**create_lease_reverse_payment**](docs/LeaseTransactionsApi.md#create_lease_reverse_payment) | **POST** /v1/leases/{leaseId}/reversepayments | Create a payment reversal
+*Buildium::LeaseTransactionsApi* | [**create_payment**](docs/LeaseTransactionsApi.md#create_payment) | **POST** /v1/leases/{leaseId}/payments | Create a payment
+*Buildium::LeaseTransactionsApi* | [**get_lease_charge_recurring_transaction_by_id**](docs/LeaseTransactionsApi.md#get_lease_charge_recurring_transaction_by_id) | **GET** /v1/leases/{leaseId}/recurringcharges/{transactionId} | Retrieve a recurring charge
+*Buildium::LeaseTransactionsApi* | [**get_lease_ledger_refund_by_id**](docs/LeaseTransactionsApi.md#get_lease_ledger_refund_by_id) | **GET** /v1/leases/{leaseId}/refunds/{refundId} | Retrieve a refund
+*Buildium::LeaseTransactionsApi* | [**get_lease_ledger_transaction_by_id**](docs/LeaseTransactionsApi.md#get_lease_ledger_transaction_by_id) | **GET** /v1/leases/{leaseId}/transactions/{transactionId} | Retrieve a lease transaction
+*Buildium::LeaseTransactionsApi* | [**get_lease_ledgers**](docs/LeaseTransactionsApi.md#get_lease_ledgers) | **GET** /v1/leases/{leaseId}/transactions | Retrieve all lease transactions
+*Buildium::LeaseTransactionsApi* | [**get_lease_outstanding_balances**](docs/LeaseTransactionsApi.md#get_lease_outstanding_balances) | **GET** /v1/leases/outstandingbalances | Retrieve all outstanding balances
+*Buildium::LeaseTransactionsApi* | [**get_lease_recurring_credit_by_id**](docs/LeaseTransactionsApi.md#get_lease_recurring_credit_by_id) | **GET** /v1/leases/{leaseId}/recurringcredits/{transactionId} | Retrieve a recurring credit
+*Buildium::LeaseTransactionsApi* | [**get_lease_recurring_transactions**](docs/LeaseTransactionsApi.md#get_lease_recurring_transactions) | **GET** /v1/leases/{leaseId}/recurringtransactions | Retrieve all recurring transactions
+*Buildium::LeaseTransactionsApi* | [**get_recurring_lease_payments_by_id**](docs/LeaseTransactionsApi.md#get_recurring_lease_payments_by_id) | **GET** /v1/leases/{leaseId}/recurringpayments/{paymentId} | Retrieve a recurring payment
+*Buildium::LeaseTransactionsApi* | [**update_lease_charge**](docs/LeaseTransactionsApi.md#update_lease_charge) | **PUT** /v1/leases/{leaseId}/charges/{chargeId} | Update a charge
+*Buildium::LeaseTransactionsApi* | [**update_lease_ledger_payment**](docs/LeaseTransactionsApi.md#update_lease_ledger_payment) | **PUT** /v1/leases/{leaseId}/payments/{paymentId} | Update a payment
*Buildium::LeasesApi* | [**create_lease**](docs/LeasesApi.md#create_lease) | **POST** /v1/leases | Create a lease
-*Buildium::LeasesApi* | [**create_lease_auto_allocated_payment**](docs/LeasesApi.md#create_lease_auto_allocated_payment) | **POST** /v1/leases/{leaseId}/autoallocatedpayments | Create a lease ledger payment with automatic allocations
-*Buildium::LeasesApi* | [**create_lease_charge_recurring_transaction**](docs/LeasesApi.md#create_lease_charge_recurring_transaction) | **POST** /v1/leases/{leaseId}/recurringcharges | Create a recurring charge
-*Buildium::LeasesApi* | [**create_lease_credit**](docs/LeasesApi.md#create_lease_credit) | **POST** /v1/leases/{leaseId}/credits | Create a credit
-*Buildium::LeasesApi* | [**create_lease_credit_recurring_transaction**](docs/LeasesApi.md#create_lease_credit_recurring_transaction) | **POST** /v1/leases/{leaseId}/recurringcredits | Create a recurring credit
-*Buildium::LeasesApi* | [**create_lease_ledger_charge**](docs/LeasesApi.md#create_lease_ledger_charge) | **POST** /v1/leases/{leaseId}/charges | Create a charge
-*Buildium::LeasesApi* | [**create_lease_ledger_deposit_withholding**](docs/LeasesApi.md#create_lease_ledger_deposit_withholding) | **POST** /v1/leases/{leaseId}/applieddeposits | Create a deposit withholding
-*Buildium::LeasesApi* | [**create_lease_ledger_refund**](docs/LeasesApi.md#create_lease_ledger_refund) | **POST** /v1/leases/{leaseId}/refunds | Create a refund
*Buildium::LeasesApi* | [**create_lease_note**](docs/LeasesApi.md#create_lease_note) | **POST** /v1/leases/{leaseId}/notes | Create a note
-*Buildium::LeasesApi* | [**create_lease_recurring_payment**](docs/LeasesApi.md#create_lease_recurring_payment) | **POST** /v1/leases/{leaseId}/recurringpayments | Create a recurring payment
*Buildium::LeasesApi* | [**create_lease_renewal**](docs/LeasesApi.md#create_lease_renewal) | **POST** /v1/leases/{leaseId}/renewals | Create a lease renewal
-*Buildium::LeasesApi* | [**create_lease_reverse_payment**](docs/LeasesApi.md#create_lease_reverse_payment) | **POST** /v1/leases/{leaseId}/reversepayments | Create a payment reversal
*Buildium::LeasesApi* | [**create_move_out_data**](docs/LeasesApi.md#create_move_out_data) | **POST** /v1/leases/{leaseId}/moveouts | Create a move out
-*Buildium::LeasesApi* | [**create_payment**](docs/LeasesApi.md#create_payment) | **POST** /v1/leases/{leaseId}/payments | Create a payment
-*Buildium::LeasesApi* | [**get_all_lease_renewals**](docs/LeasesApi.md#get_all_lease_renewals) | **GET** /v1/leases/{leaseId}/renewals | Retrieve renewal history for a lease.
-*Buildium::LeasesApi* | [**get_all_lease_renewals_for_all_properties**](docs/LeasesApi.md#get_all_lease_renewals_for_all_properties) | **GET** /v1/leases/renewals | Retrieve all lease renewals
+*Buildium::LeasesApi* | [**get_all_lease_renewals**](docs/LeasesApi.md#get_all_lease_renewals) | **GET** /v1/leases/{leaseId}/renewals | Retrieve all renewals
+*Buildium::LeasesApi* | [**get_all_lease_renewals_for_all_properties**](docs/LeasesApi.md#get_all_lease_renewals_for_all_properties) | **GET** /v1/leases/renewals | Retrieve all upcoming renewals
*Buildium::LeasesApi* | [**get_lease_by_id**](docs/LeasesApi.md#get_lease_by_id) | **GET** /v1/leases/{leaseId} | Retrieve a lease
-*Buildium::LeasesApi* | [**get_lease_charge_recurring_transaction_by_id**](docs/LeasesApi.md#get_lease_charge_recurring_transaction_by_id) | **GET** /v1/leases/{leaseId}/recurringcharges/{transactionId} | Retrieve a recurring charge
*Buildium::LeasesApi* | [**get_lease_epay_settings_by_id**](docs/LeasesApi.md#get_lease_epay_settings_by_id) | **GET** /v1/leases/{leaseId}/epaysettings | Retrieve ePay settings
-*Buildium::LeasesApi* | [**get_lease_ledger_refund_by_id**](docs/LeasesApi.md#get_lease_ledger_refund_by_id) | **GET** /v1/leases/{leaseId}/refunds/{refundId} | Retrieve a refund
-*Buildium::LeasesApi* | [**get_lease_ledger_transaction_by_id**](docs/LeasesApi.md#get_lease_ledger_transaction_by_id) | **GET** /v1/leases/{leaseId}/transactions/{transactionId} | Retrieve a lease transaction
-*Buildium::LeasesApi* | [**get_lease_ledgers**](docs/LeasesApi.md#get_lease_ledgers) | **GET** /v1/leases/{leaseId}/transactions | Retrieve all lease transactions
*Buildium::LeasesApi* | [**get_lease_move_out_data_by_tenant_id**](docs/LeasesApi.md#get_lease_move_out_data_by_tenant_id) | **GET** /v1/leases/{leaseId}/moveouts/{tenantId} | Retrieve a move out
*Buildium::LeasesApi* | [**get_lease_move_out_information_by_id**](docs/LeasesApi.md#get_lease_move_out_information_by_id) | **GET** /v1/leases/{leaseId}/moveouts | Retrieve all move outs
*Buildium::LeasesApi* | [**get_lease_note_by_note_id**](docs/LeasesApi.md#get_lease_note_by_note_id) | **GET** /v1/leases/{leaseId}/notes/{noteId} | Retrieve a note
*Buildium::LeasesApi* | [**get_lease_notes**](docs/LeasesApi.md#get_lease_notes) | **GET** /v1/leases/{leaseId}/notes | Retrieve all notes
-*Buildium::LeasesApi* | [**get_lease_outstanding_balances**](docs/LeasesApi.md#get_lease_outstanding_balances) | **GET** /v1/leases/outstandingbalances | Retrieve all outstanding balances
-*Buildium::LeasesApi* | [**get_lease_recurring_credit_by_id**](docs/LeasesApi.md#get_lease_recurring_credit_by_id) | **GET** /v1/leases/{leaseId}/recurringcredits/{transactionId} | Retrieve a recurring credit
-*Buildium::LeasesApi* | [**get_lease_recurring_transactions**](docs/LeasesApi.md#get_lease_recurring_transactions) | **GET** /v1/leases/{leaseId}/recurringtransactions | Retrieve all recurring transactions
-*Buildium::LeasesApi* | [**get_lease_renewal_by_id**](docs/LeasesApi.md#get_lease_renewal_by_id) | **GET** /v1/leases/{leaseId}/renewals/{renewalId} | Retrieve a renewal history item for a lease.
+*Buildium::LeasesApi* | [**get_lease_renewal_by_id**](docs/LeasesApi.md#get_lease_renewal_by_id) | **GET** /v1/leases/{leaseId}/renewals/{renewalId} | Retrieve a renewal
*Buildium::LeasesApi* | [**get_leases**](docs/LeasesApi.md#get_leases) | **GET** /v1/leases | Retrieve all leases
-*Buildium::LeasesApi* | [**get_recurring_lease_payments_by_id**](docs/LeasesApi.md#get_recurring_lease_payments_by_id) | **GET** /v1/leases/{leaseId}/recurringpayments/{paymentId} | Retrieve a recurring payment
*Buildium::LeasesApi* | [**get_rent**](docs/LeasesApi.md#get_rent) | **GET** /v1/leases/{leaseId}/rent | Retrieve all rent schedules
*Buildium::LeasesApi* | [**get_rent_by_id**](docs/LeasesApi.md#get_rent_by_id) | **GET** /v1/leases/{leaseId}/rent/{rentId} | Retrieve a rent schedule
*Buildium::LeasesApi* | [**get_renters_insurance_policies**](docs/LeasesApi.md#get_renters_insurance_policies) | **GET** /v1/leases/{leaseId}/rentersinsurance | Retrieve all insurance policies
*Buildium::LeasesApi* | [**get_renters_insurance_policy_by_id**](docs/LeasesApi.md#get_renters_insurance_policy_by_id) | **GET** /v1/leases/{leaseId}/rentersinsurance/{policyId} | Retrieve an insurance policy
*Buildium::LeasesApi* | [**undo_tenant_moveout**](docs/LeasesApi.md#undo_tenant_moveout) | **DELETE** /v1/leases/{leaseId}/moveouts/{tenantId} | Delete a move out
*Buildium::LeasesApi* | [**update_lease**](docs/LeasesApi.md#update_lease) | **PUT** /v1/leases/{leaseId} | Update a lease
-*Buildium::LeasesApi* | [**update_lease_charge**](docs/LeasesApi.md#update_lease_charge) | **PUT** /v1/leases/{leaseId}/charges/{chargeId} | Update a charge
*Buildium::LeasesApi* | [**update_lease_epay_settings**](docs/LeasesApi.md#update_lease_epay_settings) | **PUT** /v1/leases/{leaseId}/epaysettings | Update ePay settings
*Buildium::LeasesApi* | [**update_lease_note**](docs/LeasesApi.md#update_lease_note) | **PUT** /v1/leases/{leaseId}/notes/{noteId} | Update a note
*Buildium::ListingsApi* | [**create_listing_contact**](docs/ListingsApi.md#create_listing_contact) | **POST** /v1/rentals/units/listingcontacts | Create a listing contact
*Buildium::ListingsApi* | [**delist_unit**](docs/ListingsApi.md#delist_unit) | **DELETE** /v1/rentals/units/{unitId}/listing | Delete a listing
*Buildium::ListingsApi* | [**get_all_listing_contacts**](docs/ListingsApi.md#get_all_listing_contacts) | **GET** /v1/rentals/units/listingcontacts | Retrieve all listing contacts
*Buildium::ListingsApi* | [**get_listing_contact_by_id**](docs/ListingsApi.md#get_listing_contact_by_id) | **GET** /v1/rentals/units/listingcontacts/{listingContactId} | Retrieve a listing contact
*Buildium::ListingsApi* | [**get_listing_for_unit_async**](docs/ListingsApi.md#get_listing_for_unit_async) | **GET** /v1/rentals/units/{unitId}/listing | Retrieve a listing
*Buildium::ListingsApi* | [**get_listings_async**](docs/ListingsApi.md#get_listings_async) | **GET** /v1/rentals/units/listings | Retrieve all listings
*Buildium::ListingsApi* | [**update_listing_contact**](docs/ListingsApi.md#update_listing_contact) | **PUT** /v1/rentals/units/listingcontacts/{listingContactId} | Update a listing contact
-*Buildium::ListingsApi* | [**upsert_listings_async**](docs/ListingsApi.md#upsert_listings_async) | **PUT** /v1/rentals/units/{unitId}/listing | Create a listing
+*Buildium::ListingsApi* | [**upsert_listings_async**](docs/ListingsApi.md#upsert_listings_async) | **PUT** /v1/rentals/units/{unitId}/listing | Create/Update a listing
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_account_auto_allocated_payment**](docs/OwnershipAccountTransactionsApi.md#create_ownership_account_auto_allocated_payment) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/autoallocatedpayments | Create a payment (auto allocated)
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_account_credit**](docs/OwnershipAccountTransactionsApi.md#create_ownership_account_credit) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/credits | Create a credit
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_account_credit_recurring_transaction**](docs/OwnershipAccountTransactionsApi.md#create_ownership_account_credit_recurring_transaction) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcredits | Create a recurring credit
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_account_deposit_withholding**](docs/OwnershipAccountTransactionsApi.md#create_ownership_account_deposit_withholding) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/applieddeposits | Create a deposit withholding
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_account_ledger_charge**](docs/OwnershipAccountTransactionsApi.md#create_ownership_account_ledger_charge) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/charges | Create a charge
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_account_ledger_payment**](docs/OwnershipAccountTransactionsApi.md#create_ownership_account_ledger_payment) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/payments | Create a payment
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_account_recurring_payment**](docs/OwnershipAccountTransactionsApi.md#create_ownership_account_recurring_payment) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringpayments | Create a recurring payment
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_account_refund**](docs/OwnershipAccountTransactionsApi.md#create_ownership_account_refund) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/refunds | Create a refund
+*Buildium::OwnershipAccountTransactionsApi* | [**create_ownership_accounts_charge_recurring_transaction**](docs/OwnershipAccountTransactionsApi.md#create_ownership_accounts_charge_recurring_transaction) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcharges | Create a recurring charge
+*Buildium::OwnershipAccountTransactionsApi* | [**get_association_recurring_transaction**](docs/OwnershipAccountTransactionsApi.md#get_association_recurring_transaction) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringtransactions | Retrieve all recurring transactions
+*Buildium::OwnershipAccountTransactionsApi* | [**get_ownership_account_ledger**](docs/OwnershipAccountTransactionsApi.md#get_ownership_account_ledger) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/transactions | Retrieve all transactions
+*Buildium::OwnershipAccountTransactionsApi* | [**get_ownership_account_outstanding_balances**](docs/OwnershipAccountTransactionsApi.md#get_ownership_account_outstanding_balances) | **GET** /v1/associations/ownershipaccounts/outstandingbalances | Retrieve all outstanding balances
+*Buildium::OwnershipAccountTransactionsApi* | [**get_ownership_account_recurring_credit_by_id**](docs/OwnershipAccountTransactionsApi.md#get_ownership_account_recurring_credit_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcredits/{transactionId} | Retrieve a recurring credit
+*Buildium::OwnershipAccountTransactionsApi* | [**get_ownership_account_refund_by_id**](docs/OwnershipAccountTransactionsApi.md#get_ownership_account_refund_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/refunds/{refundId} | Retrieve a refund
+*Buildium::OwnershipAccountTransactionsApi* | [**get_ownership_account_transaction_by_id**](docs/OwnershipAccountTransactionsApi.md#get_ownership_account_transaction_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/transactions/{transactionId} | Retrieve a transaction
+*Buildium::OwnershipAccountTransactionsApi* | [**get_ownership_accounts_charge_recurring_transaction_by_id**](docs/OwnershipAccountTransactionsApi.md#get_ownership_accounts_charge_recurring_transaction_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcharges/{transactionId} | Retrieve a recurring charge
+*Buildium::OwnershipAccountTransactionsApi* | [**get_recurring_ownership_account_payments_by_id**](docs/OwnershipAccountTransactionsApi.md#get_recurring_ownership_account_payments_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringpayments/{paymentId} | Retrieve a recurring payment
+*Buildium::OwnershipAccountTransactionsApi* | [**update_ownership_account_charge**](docs/OwnershipAccountTransactionsApi.md#update_ownership_account_charge) | **PUT** /v1/associations/ownershipaccounts/{ownershipAccountId}/charges/{chargeId} | Update a charge
+*Buildium::OwnershipAccountTransactionsApi* | [**update_ownership_account_ledger_payment**](docs/OwnershipAccountTransactionsApi.md#update_ownership_account_ledger_payment) | **PUT** /v1/associations/ownershipaccounts/{ownershipAccountId}/payments/{paymentId} | Update a payment
+*Buildium::OwnershipAccountsApi* | [**create_association_ownership_account**](docs/OwnershipAccountsApi.md#create_association_ownership_account) | **POST** /v1/associations/ownershipaccounts | Create an ownership account
+*Buildium::OwnershipAccountsApi* | [**create_association_ownership_account_note**](docs/OwnershipAccountsApi.md#create_association_ownership_account_note) | **POST** /v1/associations/ownershipaccounts/{ownershipAccountId}/notes | Create a note
+*Buildium::OwnershipAccountsApi* | [**get_all_ownership_accounts**](docs/OwnershipAccountsApi.md#get_all_ownership_accounts) | **GET** /v1/associations/ownershipaccounts | Retrieve all ownership accounts
+*Buildium::OwnershipAccountsApi* | [**get_association_ownership_account_note_by_note_id**](docs/OwnershipAccountsApi.md#get_association_ownership_account_note_by_note_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/notes/{noteId} | Retrieve a note
+*Buildium::OwnershipAccountsApi* | [**get_association_ownership_account_notes**](docs/OwnershipAccountsApi.md#get_association_ownership_account_notes) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId}/notes | Retrieve all notes
+*Buildium::OwnershipAccountsApi* | [**get_ownership_account_by_id**](docs/OwnershipAccountsApi.md#get_ownership_account_by_id) | **GET** /v1/associations/ownershipaccounts/{ownershipAccountId} | Retrieve an ownership account
+*Buildium::OwnershipAccountsApi* | [**update_association_ownership_account**](docs/OwnershipAccountsApi.md#update_association_ownership_account) | **PUT** /v1/associations/ownershipaccounts/{ownershipAccountId} | Update an ownership account
+*Buildium::OwnershipAccountsApi* | [**update_association_ownership_account_note**](docs/OwnershipAccountsApi.md#update_association_ownership_account_note) | **PUT** /v1/associations/ownershipaccounts/{ownershipAccountId}/notes/{noteId} | Update a note
*Buildium::PropertyGroupsApi* | [**create_property_group**](docs/PropertyGroupsApi.md#create_property_group) | **POST** /v1/propertygroups | Create a property group
*Buildium::PropertyGroupsApi* | [**get_property_group_by_id**](docs/PropertyGroupsApi.md#get_property_group_by_id) | **GET** /v1/propertygroups/{propertyGroupId} | Retrieve a property group
*Buildium::PropertyGroupsApi* | [**get_property_groups**](docs/PropertyGroupsApi.md#get_property_groups) | **GET** /v1/propertygroups | Retrieve all property groups
*Buildium::PropertyGroupsApi* | [**update_property_group**](docs/PropertyGroupsApi.md#update_property_group) | **PUT** /v1/propertygroups/{propertyGroupId} | Update a property group
*Buildium::RentalAppliancesApi* | [**create_rental_appliance**](docs/RentalAppliancesApi.md#create_rental_appliance) | **POST** /v1/rentals/appliances | Create an appliance
@@ -480,10 +501,20 @@
*Buildium::RentalAppliancesApi* | [**get_rental_appliance_by_id**](docs/RentalAppliancesApi.md#get_rental_appliance_by_id) | **GET** /v1/rentals/appliances/{applianceId} | Retrieve an appliance
*Buildium::RentalAppliancesApi* | [**get_rental_appliance_service_history**](docs/RentalAppliancesApi.md#get_rental_appliance_service_history) | **GET** /v1/rentals/appliances/{applianceId}/servicehistory | Retrieve all service history
*Buildium::RentalAppliancesApi* | [**get_rental_appliance_service_history_by_id**](docs/RentalAppliancesApi.md#get_rental_appliance_service_history_by_id) | **GET** /v1/rentals/appliances/{applianceId}/servicehistory/{serviceHistoryId} | Retrieve a service history
*Buildium::RentalAppliancesApi* | [**get_rental_appliances**](docs/RentalAppliancesApi.md#get_rental_appliances) | **GET** /v1/rentals/appliances | Retrieve all appliances
*Buildium::RentalAppliancesApi* | [**update_rental_appliance**](docs/RentalAppliancesApi.md#update_rental_appliance) | **PUT** /v1/rentals/appliances/{applianceId} | Update an appliance
+*Buildium::RentalMeterReadingsApi* | [**delete_meter_reading_details_for_rental**](docs/RentalMeterReadingsApi.md#delete_meter_reading_details_for_rental) | **DELETE** /v1/rentals/{propertyId}/meterreadings/summary | Delete meter reading details for a given date
+*Buildium::RentalMeterReadingsApi* | [**get_meter_reading_details_for_rental_async**](docs/RentalMeterReadingsApi.md#get_meter_reading_details_for_rental_async) | **GET** /v1/rentals/{propertyId}/meterreadings/summary | Retrieve all meter reading details
+*Buildium::RentalMeterReadingsApi* | [**get_meter_readings_for_rental**](docs/RentalMeterReadingsApi.md#get_meter_readings_for_rental) | **GET** /v1/rentals/{propertyId}/meterreadings | Retrieve all meter readings
+*Buildium::RentalMeterReadingsApi* | [**upsert_meter_reading_details_for_rental_async**](docs/RentalMeterReadingsApi.md#upsert_meter_reading_details_for_rental_async) | **PUT** /v1/rentals/{propertyId}/meterreadings/summary | Create/Update meter reading details
+*Buildium::RentalOwnerRequestsApi* | [**create_rental_owner_request_task**](docs/RentalOwnerRequestsApi.md#create_rental_owner_request_task) | **POST** /v1/tasks/rentalownerrequests | Create a rental owner request
+*Buildium::RentalOwnerRequestsApi* | [**get_all_rental_owner_request_tasks**](docs/RentalOwnerRequestsApi.md#get_all_rental_owner_request_tasks) | **GET** /v1/tasks/rentalownerrequests | Retrieve all rental owner requests
+*Buildium::RentalOwnerRequestsApi* | [**get_rental_owner_request_task_by_id**](docs/RentalOwnerRequestsApi.md#get_rental_owner_request_task_by_id) | **GET** /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId} | Retrieve a rental owner request
+*Buildium::RentalOwnerRequestsApi* | [**get_rental_owner_request_task_contribution_data**](docs/RentalOwnerRequestsApi.md#get_rental_owner_request_task_contribution_data) | **GET** /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId}/contributiondata | Retrieve rental owner contribution request
+*Buildium::RentalOwnerRequestsApi* | [**update_rental_owner_request_task**](docs/RentalOwnerRequestsApi.md#update_rental_owner_request_task) | **PUT** /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId} | Update a rental owner request
+*Buildium::RentalOwnerRequestsApi* | [**update_rental_owner_request_task_contribution_data**](docs/RentalOwnerRequestsApi.md#update_rental_owner_request_task_contribution_data) | **PUT** /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId}/contributiondata | Update a rental owner contribution request
*Buildium::RentalOwnersApi* | [**create_rental_owner**](docs/RentalOwnersApi.md#create_rental_owner) | **POST** /v1/rentals/owners | Create an owner
*Buildium::RentalOwnersApi* | [**create_rental_owner_note**](docs/RentalOwnersApi.md#create_rental_owner_note) | **POST** /v1/rentals/owners/{rentalOwnerId}/notes | Create a note
*Buildium::RentalOwnersApi* | [**get_rental_owner_by_id**](docs/RentalOwnersApi.md#get_rental_owner_by_id) | **GET** /v1/rentals/owners/{rentalOwnerId} | Retrieve an owner
*Buildium::RentalOwnersApi* | [**get_rental_owner_note_by_id**](docs/RentalOwnersApi.md#get_rental_owner_note_by_id) | **GET** /v1/rentals/owners/{rentalOwnerId}/notes/{noteId} | Retrieve a note
*Buildium::RentalOwnersApi* | [**get_rental_owner_notes**](docs/RentalOwnersApi.md#get_rental_owner_notes) | **GET** /v1/rentals/owners/{rentalOwnerId}/notes | Retrieves all notes
@@ -491,29 +522,28 @@
*Buildium::RentalOwnersApi* | [**update_rental_owner**](docs/RentalOwnersApi.md#update_rental_owner) | **PUT** /v1/rentals/owners/{rentalOwnerId} | Update an owner
*Buildium::RentalOwnersApi* | [**update_rental_owner_note**](docs/RentalOwnersApi.md#update_rental_owner_note) | **PUT** /v1/rentals/owners/{rentalOwnerId}/notes/{noteId} | Update a note
*Buildium::RentalPropertiesApi* | [**create_rental_image_upload_file_request_async**](docs/RentalPropertiesApi.md#create_rental_image_upload_file_request_async) | **POST** /v1/rentals/{propertyId}/images/uploadrequests | Upload a rental image
*Buildium::RentalPropertiesApi* | [**create_rental_property**](docs/RentalPropertiesApi.md#create_rental_property) | **POST** /v1/rentals | Create a property
*Buildium::RentalPropertiesApi* | [**create_rental_property_note**](docs/RentalPropertiesApi.md#create_rental_property_note) | **POST** /v1/rentals/{propertyId}/notes | Create a note
-*Buildium::RentalPropertiesApi* | [**create_rental_unit_image_upload_file_request_async**](docs/RentalPropertiesApi.md#create_rental_unit_image_upload_file_request_async) | **POST** /v1/rentals/units/{unitId}/images/uploadrequests | Upload a unit image
*Buildium::RentalPropertiesApi* | [**create_video_link_request**](docs/RentalPropertiesApi.md#create_video_link_request) | **POST** /v1/rentals/{propertyId}/images/videolinkrequests | Create an image for a rental using a video link
-*Buildium::RentalPropertiesApi* | [**delete_rental_image**](docs/RentalPropertiesApi.md#delete_rental_image) | **DELETE** /v1/rentals/{propertyId}/images/{imageId} | Delete a rental image
+*Buildium::RentalPropertiesApi* | [**delete_rental_image**](docs/RentalPropertiesApi.md#delete_rental_image) | **DELETE** /v1/rentals/{propertyId}/images/{imageId} | Delete a property image
*Buildium::RentalPropertiesApi* | [**get_all_rentals**](docs/RentalPropertiesApi.md#get_all_rentals) | **GET** /v1/rentals | Retrieve all properties
*Buildium::RentalPropertiesApi* | [**get_e_pay_settings_for_rental_property**](docs/RentalPropertiesApi.md#get_e_pay_settings_for_rental_property) | **GET** /v1/rentals/{propertyId}/epaysettings | Retrieve ePay settings
*Buildium::RentalPropertiesApi* | [**get_features_by_rental_property_id**](docs/RentalPropertiesApi.md#get_features_by_rental_property_id) | **GET** /v1/rentals/{propertyId}/amenities | Retrieve all amenities
*Buildium::RentalPropertiesApi* | [**get_rental_by_id**](docs/RentalPropertiesApi.md#get_rental_by_id) | **GET** /v1/rentals/{propertyId} | Retrieve a property
-*Buildium::RentalPropertiesApi* | [**get_rental_image_by_id**](docs/RentalPropertiesApi.md#get_rental_image_by_id) | **GET** /v1/rentals/{propertyId}/images/{imageId} | Retrieve a rental image
-*Buildium::RentalPropertiesApi* | [**get_rental_image_download_url_by_id**](docs/RentalPropertiesApi.md#get_rental_image_download_url_by_id) | **POST** /v1/rentals/{propertyId}/images/{imageId}/downloadrequests | Retrieve a rental image download link
-*Buildium::RentalPropertiesApi* | [**get_rental_images**](docs/RentalPropertiesApi.md#get_rental_images) | **GET** /v1/rentals/{propertyId}/images | Retrieve all images for a rental
+*Buildium::RentalPropertiesApi* | [**get_rental_image_by_id**](docs/RentalPropertiesApi.md#get_rental_image_by_id) | **GET** /v1/rentals/{propertyId}/images/{imageId} | Retrieve a property image
+*Buildium::RentalPropertiesApi* | [**get_rental_image_download_url_by_id**](docs/RentalPropertiesApi.md#get_rental_image_download_url_by_id) | **POST** /v1/rentals/{propertyId}/images/{imageId}/downloadrequests | Download a property image
+*Buildium::RentalPropertiesApi* | [**get_rental_images**](docs/RentalPropertiesApi.md#get_rental_images) | **GET** /v1/rentals/{propertyId}/images | Retrieve all property images
*Buildium::RentalPropertiesApi* | [**get_rental_note_by_note_id**](docs/RentalPropertiesApi.md#get_rental_note_by_note_id) | **GET** /v1/rentals/{propertyId}/notes/{noteId} | Retrieve a note
*Buildium::RentalPropertiesApi* | [**get_rental_notes**](docs/RentalPropertiesApi.md#get_rental_notes) | **GET** /v1/rentals/{propertyId}/notes | Retrieve all notes
*Buildium::RentalPropertiesApi* | [**get_rental_preferred_vendors**](docs/RentalPropertiesApi.md#get_rental_preferred_vendors) | **GET** /v1/rentals/{propertyId}/vendors | Retrieve all preferred vendors
*Buildium::RentalPropertiesApi* | [**inactivate_rental_property**](docs/RentalPropertiesApi.md#inactivate_rental_property) | **POST** /v1/rentals/{propertyId}/inactivationrequest | Inactivate a property
*Buildium::RentalPropertiesApi* | [**reactivate_rental_property**](docs/RentalPropertiesApi.md#reactivate_rental_property) | **POST** /v1/rentals/{propertyId}/reactivationrequest | Reactivate a property
-*Buildium::RentalPropertiesApi* | [**reorder_rental_images**](docs/RentalPropertiesApi.md#reorder_rental_images) | **PUT** /v1/rentals/{propertyId}/images/order | Reorder rental images
+*Buildium::RentalPropertiesApi* | [**reorder_rental_images**](docs/RentalPropertiesApi.md#reorder_rental_images) | **PUT** /v1/rentals/{propertyId}/images/order | Update property image order
*Buildium::RentalPropertiesApi* | [**update_e_pay_settings_for_rental**](docs/RentalPropertiesApi.md#update_e_pay_settings_for_rental) | **PUT** /v1/rentals/{propertyId}/epaysettings | Update ePay settings
*Buildium::RentalPropertiesApi* | [**update_rental_features**](docs/RentalPropertiesApi.md#update_rental_features) | **PUT** /v1/rentals/{propertyId}/amenities | Update amenities
-*Buildium::RentalPropertiesApi* | [**update_rental_image**](docs/RentalPropertiesApi.md#update_rental_image) | **PUT** /v1/rentals/{propertyId}/images/{imageId} | Update a rental image
+*Buildium::RentalPropertiesApi* | [**update_rental_image**](docs/RentalPropertiesApi.md#update_rental_image) | **PUT** /v1/rentals/{propertyId}/images/{imageId} | Update a property image
*Buildium::RentalPropertiesApi* | [**update_rental_preferred_vendors**](docs/RentalPropertiesApi.md#update_rental_preferred_vendors) | **PUT** /v1/rentals/{propertyId}/vendors | Update preferred vendors
*Buildium::RentalPropertiesApi* | [**update_rental_property**](docs/RentalPropertiesApi.md#update_rental_property) | **PUT** /v1/rentals/{propertyId} | Update a property
*Buildium::RentalPropertiesApi* | [**update_rental_property_note**](docs/RentalPropertiesApi.md#update_rental_property_note) | **PUT** /v1/rentals/{propertyId}/notes/{noteId} | Update a note
*Buildium::RentalTenantsApi* | [**create_rental_tenant**](docs/RentalTenantsApi.md#create_rental_tenant) | **POST** /v1/leases/tenants | Create a tenant
*Buildium::RentalTenantsApi* | [**create_tenant_note**](docs/RentalTenantsApi.md#create_tenant_note) | **POST** /v1/leases/tenants/{tenantId}/notes | Create a note
@@ -522,62 +552,53 @@
*Buildium::RentalTenantsApi* | [**get_tenant_by_id**](docs/RentalTenantsApi.md#get_tenant_by_id) | **GET** /v1/leases/tenants/{tenantId} | Retrieve a tenant
*Buildium::RentalTenantsApi* | [**get_tenant_note_by_id**](docs/RentalTenantsApi.md#get_tenant_note_by_id) | **GET** /v1/leases/tenants/{tenantId}/notes/{noteId} | Retrieve a note
*Buildium::RentalTenantsApi* | [**update_lease_tenant_note**](docs/RentalTenantsApi.md#update_lease_tenant_note) | **PUT** /v1/leases/tenants/{tenantId}/notes/{noteId} | Update a note
*Buildium::RentalTenantsApi* | [**update_rental_tenant**](docs/RentalTenantsApi.md#update_rental_tenant) | **PUT** /v1/leases/tenants/{tenantId} | Update a tenant
*Buildium::RentalUnitsApi* | [**create_rental_unit**](docs/RentalUnitsApi.md#create_rental_unit) | **POST** /v1/rentals/units | Create a unit
+*Buildium::RentalUnitsApi* | [**create_rental_unit_image_upload_file_request_async**](docs/RentalUnitsApi.md#create_rental_unit_image_upload_file_request_async) | **POST** /v1/rentals/units/{unitId}/images/uploadrequests | Upload a unit image
*Buildium::RentalUnitsApi* | [**create_rental_unit_note**](docs/RentalUnitsApi.md#create_rental_unit_note) | **POST** /v1/rentals/units/{unitId}/notes | Create a note
-*Buildium::RentalUnitsApi* | [**create_unit_video_link_request**](docs/RentalUnitsApi.md#create_unit_video_link_request) | **POST** /v1/rentals/units/{unitId}/images/videolinkrequests | Create an image for a rental unit using a video link
-*Buildium::RentalUnitsApi* | [**delete_rental_unit_image**](docs/RentalUnitsApi.md#delete_rental_unit_image) | **DELETE** /v1/rentals/units/{unitId}/images/{imageId} | Delete a rental unit image
+*Buildium::RentalUnitsApi* | [**create_unit_video_link_request**](docs/RentalUnitsApi.md#create_unit_video_link_request) | **POST** /v1/rentals/units/{unitId}/images/videolinkrequests | Create an image for a unit using a video link
+*Buildium::RentalUnitsApi* | [**delete_rental_unit_image**](docs/RentalUnitsApi.md#delete_rental_unit_image) | **DELETE** /v1/rentals/units/{unitId}/images/{imageId} | Delete a unit image
*Buildium::RentalUnitsApi* | [**get_all_rental_units**](docs/RentalUnitsApi.md#get_all_rental_units) | **GET** /v1/rentals/units | Retrieve all units
*Buildium::RentalUnitsApi* | [**get_features_for_rental_unit_by_id**](docs/RentalUnitsApi.md#get_features_for_rental_unit_by_id) | **GET** /v1/rentals/units/{unitId}/amenities | Retrieve all amenities
*Buildium::RentalUnitsApi* | [**get_rental_unit_by_id**](docs/RentalUnitsApi.md#get_rental_unit_by_id) | **GET** /v1/rentals/units/{unitId} | Retrieve a unit
*Buildium::RentalUnitsApi* | [**get_rental_unit_image_by_id**](docs/RentalUnitsApi.md#get_rental_unit_image_by_id) | **GET** /v1/rentals/units/{unitId}/images/{imageId} | Retrieve a unit image
-*Buildium::RentalUnitsApi* | [**get_rental_unit_image_download_url_by_id**](docs/RentalUnitsApi.md#get_rental_unit_image_download_url_by_id) | **POST** /v1/rentals/units/{unitId}/images/{imageId}/downloadrequests | Retrieve a rental unit image download link
-*Buildium::RentalUnitsApi* | [**get_rental_unit_images**](docs/RentalUnitsApi.md#get_rental_unit_images) | **GET** /v1/rentals/units/{unitId}/images | Retrieve all images for a unit
+*Buildium::RentalUnitsApi* | [**get_rental_unit_image_download_url_by_id**](docs/RentalUnitsApi.md#get_rental_unit_image_download_url_by_id) | **POST** /v1/rentals/units/{unitId}/images/{imageId}/downloadrequests | Download a unit image
+*Buildium::RentalUnitsApi* | [**get_rental_unit_images**](docs/RentalUnitsApi.md#get_rental_unit_images) | **GET** /v1/rentals/units/{unitId}/images | Retrieve all unit images
*Buildium::RentalUnitsApi* | [**get_rental_unit_note_by_note_id**](docs/RentalUnitsApi.md#get_rental_unit_note_by_note_id) | **GET** /v1/rentals/units/{unitId}/notes/{noteId} | Retrieve a note
*Buildium::RentalUnitsApi* | [**get_rental_unit_notes**](docs/RentalUnitsApi.md#get_rental_unit_notes) | **GET** /v1/rentals/units/{unitId}/notes | Retrieve all notes
-*Buildium::RentalUnitsApi* | [**reorder_rental_unit_images**](docs/RentalUnitsApi.md#reorder_rental_unit_images) | **PUT** /v1/rentals/units/{unitId}/images/order | Reorder rental unit images
+*Buildium::RentalUnitsApi* | [**reorder_rental_unit_images**](docs/RentalUnitsApi.md#reorder_rental_unit_images) | **PUT** /v1/rentals/units/{unitId}/images/order | Update unit image order
*Buildium::RentalUnitsApi* | [**update_note_for_rental_unit**](docs/RentalUnitsApi.md#update_note_for_rental_unit) | **PUT** /v1/rentals/units/{unitId}/notes/{noteId} | Update a note
*Buildium::RentalUnitsApi* | [**update_rental_unit**](docs/RentalUnitsApi.md#update_rental_unit) | **PUT** /v1/rentals/units/{unitId} | Update a unit
*Buildium::RentalUnitsApi* | [**update_rental_unit_features**](docs/RentalUnitsApi.md#update_rental_unit_features) | **PUT** /v1/rentals/units/{unitId}/amenities | Update amenities
*Buildium::RentalUnitsApi* | [**update_rental_unit_image**](docs/RentalUnitsApi.md#update_rental_unit_image) | **PUT** /v1/rentals/units/{unitId}/images/{imageId} | Update a unit image
*Buildium::ResidentCenterApi* | [**get_resident_center_users**](docs/ResidentCenterApi.md#get_resident_center_users) | **GET** /v1/residentCenterUsers | Retrieve all resident center users
*Buildium::ResidentCenterApi* | [**get_retail_cash_user**](docs/ResidentCenterApi.md#get_retail_cash_user) | **GET** /v1/retailcashusers/{userId}/{unitAgreementId} | Retrieve a retail cash user
*Buildium::ResidentCenterApi* | [**get_retail_cash_users**](docs/ResidentCenterApi.md#get_retail_cash_users) | **GET** /v1/retailcashusers | Retrieve all retail cash users
*Buildium::ResidentCenterApi* | [**update_retail_cash_user**](docs/ResidentCenterApi.md#update_retail_cash_user) | **PUT** /v1/retailcashusers/{userId}/{unitAgreementId} | Update a retail cash user
-*Buildium::TasksApi* | [**create_contact_request_task**](docs/TasksApi.md#create_contact_request_task) | **POST** /v1/tasks/contactrequests | Create a contact request
-*Buildium::TasksApi* | [**create_rental_owner_request_task**](docs/TasksApi.md#create_rental_owner_request_task) | **POST** /v1/tasks/rentalownerrequests | Create a rental owner request
-*Buildium::TasksApi* | [**create_resource**](docs/TasksApi.md#create_resource) | **POST** /v1/tasks/residentrequests | Create a resident request
+*Buildium::ResidentRequestsApi* | [**create_resource**](docs/ResidentRequestsApi.md#create_resource) | **POST** /v1/tasks/residentrequests | Create a resident request
+*Buildium::ResidentRequestsApi* | [**get_resident_request_task**](docs/ResidentRequestsApi.md#get_resident_request_task) | **GET** /v1/tasks/residentrequests/{residentRequestTaskId} | Retrieve a resident request
+*Buildium::ResidentRequestsApi* | [**get_resident_request_tasks**](docs/ResidentRequestsApi.md#get_resident_request_tasks) | **GET** /v1/tasks/residentrequests | Retrieve all resident requests
+*Buildium::ResidentRequestsApi* | [**update_resource**](docs/ResidentRequestsApi.md#update_resource) | **PUT** /v1/tasks/residentrequests/{residentRequestTaskId} | Update a resident request
*Buildium::TasksApi* | [**create_task_category**](docs/TasksApi.md#create_task_category) | **POST** /v1/tasks/categories | Create a task category
-*Buildium::TasksApi* | [**create_to_do_task**](docs/TasksApi.md#create_to_do_task) | **POST** /v1/tasks/todorequests | Create a to do task
*Buildium::TasksApi* | [**delete_task_history_file**](docs/TasksApi.md#delete_task_history_file) | **DELETE** /v1/tasks/{taskId}/history/{taskHistoryId}/files/{fileId} | Delete task history file
-*Buildium::TasksApi* | [**get_all_rental_owner_request_tasks**](docs/TasksApi.md#get_all_rental_owner_request_tasks) | **GET** /v1/tasks/rentalownerrequests | Retrieve all rental owner requests
*Buildium::TasksApi* | [**get_all_task_categories**](docs/TasksApi.md#get_all_task_categories) | **GET** /v1/tasks/categories | Retrieve all task categories
*Buildium::TasksApi* | [**get_all_task_history_files**](docs/TasksApi.md#get_all_task_history_files) | **GET** /v1/tasks/{taskId}/history/{taskHistoryId}/files | Retrieve all task history files
*Buildium::TasksApi* | [**get_all_tasks**](docs/TasksApi.md#get_all_tasks) | **GET** /v1/tasks | Retrieve all tasks
-*Buildium::TasksApi* | [**get_contact_request_task_by_id**](docs/TasksApi.md#get_contact_request_task_by_id) | **GET** /v1/tasks/contactrequests/{contactRequestTaskId} | Retrieve a contact request
-*Buildium::TasksApi* | [**get_contact_request_tasks**](docs/TasksApi.md#get_contact_request_tasks) | **GET** /v1/tasks/contactrequests | Retrieve all contact requests
*Buildium::TasksApi* | [**get_file_download_request**](docs/TasksApi.md#get_file_download_request) | **POST** /v1/tasks/{taskId}/history/{taskHistoryId}/files/{fileId}/downloadrequest | Download a task history file
-*Buildium::TasksApi* | [**get_rental_owner_request_task_by_id**](docs/TasksApi.md#get_rental_owner_request_task_by_id) | **GET** /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId} | Retrieve a rental owner request
-*Buildium::TasksApi* | [**get_rental_owner_request_task_contribution_data**](docs/TasksApi.md#get_rental_owner_request_task_contribution_data) | **GET** /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId}/contributiondata | Retrieve contribution details included for a rental owner contribution request
-*Buildium::TasksApi* | [**get_resident_request_task**](docs/TasksApi.md#get_resident_request_task) | **GET** /v1/tasks/residentrequests/{residentRequestTaskId} | Retrieve a resident request
-*Buildium::TasksApi* | [**get_resident_request_tasks**](docs/TasksApi.md#get_resident_request_tasks) | **GET** /v1/tasks/residentrequests | Retrieve all resident requests
*Buildium::TasksApi* | [**get_task_by_id**](docs/TasksApi.md#get_task_by_id) | **GET** /v1/tasks/{taskId} | Retrieve a task
*Buildium::TasksApi* | [**get_task_category_by_id**](docs/TasksApi.md#get_task_category_by_id) | **GET** /v1/tasks/categories/{taskCategoryId} | Retrieve a task category
*Buildium::TasksApi* | [**get_task_histories**](docs/TasksApi.md#get_task_histories) | **GET** /v1/tasks/{taskId}/history | Retrieve all task history
*Buildium::TasksApi* | [**get_task_history_by_id**](docs/TasksApi.md#get_task_history_by_id) | **GET** /v1/tasks/{taskId}/history/{taskHistoryId} | Retrieve a task history
*Buildium::TasksApi* | [**get_task_history_file_by_id**](docs/TasksApi.md#get_task_history_file_by_id) | **GET** /v1/tasks/{taskId}/history/{taskHistoryId}/files/{fileId} | Retrieve a task history file
-*Buildium::TasksApi* | [**get_to_do_task_by_id**](docs/TasksApi.md#get_to_do_task_by_id) | **GET** /v1/tasks/todorequests/{toDoTaskId} | Retrieve a to do task
-*Buildium::TasksApi* | [**get_to_do_tasks**](docs/TasksApi.md#get_to_do_tasks) | **GET** /v1/tasks/todorequests | Retrieve all to do tasks
-*Buildium::TasksApi* | [**update_contact_request_task**](docs/TasksApi.md#update_contact_request_task) | **PUT** /v1/tasks/contactrequests/{contactRequestTaskId} | Update a contact request
-*Buildium::TasksApi* | [**update_rental_owner_request_task**](docs/TasksApi.md#update_rental_owner_request_task) | **PUT** /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId} | Update a rental owner request
-*Buildium::TasksApi* | [**update_rental_owner_request_task_contribution_data**](docs/TasksApi.md#update_rental_owner_request_task_contribution_data) | **PUT** /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId}/contributiondata | Update contribution details included for a rental owner contribution request
-*Buildium::TasksApi* | [**update_resource**](docs/TasksApi.md#update_resource) | **PUT** /v1/tasks/residentrequests/{residentRequestTaskId} | Update a resident request
*Buildium::TasksApi* | [**update_task_category**](docs/TasksApi.md#update_task_category) | **PUT** /v1/tasks/categories/{taskCategoryId} | Update a task category
*Buildium::TasksApi* | [**update_task_history**](docs/TasksApi.md#update_task_history) | **PUT** /v1/tasks/{taskId}/history/{taskHistoryId} | Update a task history
-*Buildium::TasksApi* | [**update_to_do_task**](docs/TasksApi.md#update_to_do_task) | **PUT** /v1/tasks/todorequests/{toDoTaskId} | Update a to do task
*Buildium::TasksApi* | [**upload_task_history_file_request_async**](docs/TasksApi.md#upload_task_history_file_request_async) | **POST** /v1/tasks/{taskId}/history/{taskHistoryId}/files/uploadrequests | Upload a task history file
+*Buildium::ToDoRequestsApi* | [**create_to_do_task**](docs/ToDoRequestsApi.md#create_to_do_task) | **POST** /v1/tasks/todorequests | Create a to do request
+*Buildium::ToDoRequestsApi* | [**get_to_do_task_by_id**](docs/ToDoRequestsApi.md#get_to_do_task_by_id) | **GET** /v1/tasks/todorequests/{toDoTaskId} | Retrieve a to do request
+*Buildium::ToDoRequestsApi* | [**get_to_do_tasks**](docs/ToDoRequestsApi.md#get_to_do_tasks) | **GET** /v1/tasks/todorequests | Retrieve all to do requests
+*Buildium::ToDoRequestsApi* | [**update_to_do_task**](docs/ToDoRequestsApi.md#update_to_do_task) | **PUT** /v1/tasks/todorequests/{toDoTaskId} | Update a to do request
*Buildium::VendorsApi* | [**create_vendor**](docs/VendorsApi.md#create_vendor) | **POST** /v1/vendors | Create a vendor
*Buildium::VendorsApi* | [**create_vendor_category**](docs/VendorsApi.md#create_vendor_category) | **POST** /v1/vendors/categories | Create a vendor category
*Buildium::VendorsApi* | [**create_vendor_credit**](docs/VendorsApi.md#create_vendor_credit) | **POST** /v1/vendors/{vendorId}/credits | Create a credit
*Buildium::VendorsApi* | [**create_vendor_note**](docs/VendorsApi.md#create_vendor_note) | **POST** /v1/vendors/{vendorId}/notes | Create a note
*Buildium::VendorsApi* | [**create_vendor_refund**](docs/VendorsApi.md#create_vendor_refund) | **POST** /v1/vendors/{vendorId}/refunds | Create a refund
@@ -627,10 +648,11 @@
- [Buildium::ApplicationMessage](docs/ApplicationMessage.md)
- [Buildium::ApplicationPutMessage](docs/ApplicationPutMessage.md)
- [Buildium::ApplicationResponseFieldMessage](docs/ApplicationResponseFieldMessage.md)
- [Buildium::ApplicationResponseMessage](docs/ApplicationResponseMessage.md)
- [Buildium::ApplicationSectionResponseMessage](docs/ApplicationSectionResponseMessage.md)
+ - [Buildium::AppliedVendorCreditMessage](docs/AppliedVendorCreditMessage.md)
- [Buildium::AssociationApplianceMessage](docs/AssociationApplianceMessage.md)
- [Buildium::AssociationAppliancePostMessage](docs/AssociationAppliancePostMessage.md)
- [Buildium::AssociationAppliancePutMessage](docs/AssociationAppliancePutMessage.md)
- [Buildium::AssociationApplianceSearchMessage](docs/AssociationApplianceSearchMessage.md)
- [Buildium::AssociationApplianceServiceHistoryMessage](docs/AssociationApplianceServiceHistoryMessage.md)
@@ -665,10 +687,11 @@
- [Buildium::AssociationUnitPutMessage](docs/AssociationUnitPutMessage.md)
- [Buildium::AssociationUnitSearchMessage](docs/AssociationUnitSearchMessage.md)
- [Buildium::AssociationUnitsPostMessage](docs/AssociationUnitsPostMessage.md)
- [Buildium::AssociationUserSearchMessage](docs/AssociationUserSearchMessage.md)
- [Buildium::BankAccountCheckAccountingEntitySaveMessage](docs/BankAccountCheckAccountingEntitySaveMessage.md)
+ - [Buildium::BankAccountCheckFileMessage](docs/BankAccountCheckFileMessage.md)
- [Buildium::BankAccountCheckLineMessage](docs/BankAccountCheckLineMessage.md)
- [Buildium::BankAccountCheckLineSaveMessage](docs/BankAccountCheckLineSaveMessage.md)
- [Buildium::BankAccountCheckMessage](docs/BankAccountCheckMessage.md)
- [Buildium::BankAccountCheckPayeeMessage](docs/BankAccountCheckPayeeMessage.md)
- [Buildium::BankAccountCheckPayeeSaveMessage](docs/BankAccountCheckPayeeSaveMessage.md)
@@ -725,10 +748,11 @@
- [Buildium::BudgetPostMessage](docs/BudgetPostMessage.md)
- [Buildium::BudgetPutMessage](docs/BudgetPutMessage.md)
- [Buildium::BudgetSearchMessage](docs/BudgetSearchMessage.md)
- [Buildium::CCPaymentsMessage](docs/CCPaymentsMessage.md)
- [Buildium::CCPaymentsPutMessage](docs/CCPaymentsPutMessage.md)
+ - [Buildium::CancellationToken](docs/CancellationToken.md)
- [Buildium::ChargeRecurringTransactionPostMessage](docs/ChargeRecurringTransactionPostMessage.md)
- [Buildium::ChargeRecurringTransactionPutMessage](docs/ChargeRecurringTransactionPutMessage.md)
- [Buildium::CheckPrintingInfoMessage](docs/CheckPrintingInfoMessage.md)
- [Buildium::CheckPrintingInfoPostMessage](docs/CheckPrintingInfoPostMessage.md)
- [Buildium::CheckPrintingInfoPutMessage](docs/CheckPrintingInfoPutMessage.md)
@@ -766,10 +790,36 @@
- [Buildium::FileEntityMessage](docs/FileEntityMessage.md)
- [Buildium::FileMessage](docs/FileMessage.md)
- [Buildium::FileNamePostMessage](docs/FileNamePostMessage.md)
- [Buildium::FilePutMessage](docs/FilePutMessage.md)
- [Buildium::FileSearchMessage](docs/FileSearchMessage.md)
+ - [Buildium::FileSharingAccountMessage](docs/FileSharingAccountMessage.md)
+ - [Buildium::FileSharingAccountPutMessage](docs/FileSharingAccountPutMessage.md)
+ - [Buildium::FileSharingAssociationMessage](docs/FileSharingAssociationMessage.md)
+ - [Buildium::FileSharingAssociationOwnerMessage](docs/FileSharingAssociationOwnerMessage.md)
+ - [Buildium::FileSharingAssociationOwnerPutMessage](docs/FileSharingAssociationOwnerPutMessage.md)
+ - [Buildium::FileSharingAssociationPutMessage](docs/FileSharingAssociationPutMessage.md)
+ - [Buildium::FileSharingAssociationUnitMessage](docs/FileSharingAssociationUnitMessage.md)
+ - [Buildium::FileSharingAssociationUnitPutMessage](docs/FileSharingAssociationUnitPutMessage.md)
+ - [Buildium::FileSharingCommitteeMessage](docs/FileSharingCommitteeMessage.md)
+ - [Buildium::FileSharingCommitteePutMessage](docs/FileSharingCommitteePutMessage.md)
+ - [Buildium::FileSharingLeaseMessage](docs/FileSharingLeaseMessage.md)
+ - [Buildium::FileSharingLeasePutMessage](docs/FileSharingLeasePutMessage.md)
+ - [Buildium::FileSharingMessage](docs/FileSharingMessage.md)
+ - [Buildium::FileSharingOwnershipAccountMessage](docs/FileSharingOwnershipAccountMessage.md)
+ - [Buildium::FileSharingOwnershipAccountPutMessage](docs/FileSharingOwnershipAccountPutMessage.md)
+ - [Buildium::FileSharingPutMessage](docs/FileSharingPutMessage.md)
+ - [Buildium::FileSharingRentalMessage](docs/FileSharingRentalMessage.md)
+ - [Buildium::FileSharingRentalOwnerMessage](docs/FileSharingRentalOwnerMessage.md)
+ - [Buildium::FileSharingRentalOwnerPutMessage](docs/FileSharingRentalOwnerPutMessage.md)
+ - [Buildium::FileSharingRentalPutMessage](docs/FileSharingRentalPutMessage.md)
+ - [Buildium::FileSharingRentalUnitMesage](docs/FileSharingRentalUnitMesage.md)
+ - [Buildium::FileSharingRentalUnitPutMesage](docs/FileSharingRentalUnitPutMesage.md)
+ - [Buildium::FileSharingTenantMessage](docs/FileSharingTenantMessage.md)
+ - [Buildium::FileSharingTenantPutMessage](docs/FileSharingTenantPutMessage.md)
+ - [Buildium::FileSharingVendorMessage](docs/FileSharingVendorMessage.md)
+ - [Buildium::FileSharingVendorPutMessage](docs/FileSharingVendorPutMessage.md)
- [Buildium::FileUploadPostMessage](docs/FileUploadPostMessage.md)
- [Buildium::FileUploadTicketMessage](docs/FileUploadTicketMessage.md)
- [Buildium::GLAccountBalanceItemMessage](docs/GLAccountBalanceItemMessage.md)
- [Buildium::GLAccountBalanceMessage](docs/GLAccountBalanceMessage.md)
- [Buildium::GLAccountBalanceSearchMessage](docs/GLAccountBalanceSearchMessage.md)
@@ -791,10 +841,11 @@
- [Buildium::ImageReorderRequestPutMessage](docs/ImageReorderRequestPutMessage.md)
- [Buildium::InsuredTenantMessage](docs/InsuredTenantMessage.md)
- [Buildium::InternalTransactionStatusMessage](docs/InternalTransactionStatusMessage.md)
- [Buildium::JournalLineMessage](docs/JournalLineMessage.md)
- [Buildium::JournalMessage](docs/JournalMessage.md)
+ - [Buildium::JsonPatchOperation](docs/JsonPatchOperation.md)
- [Buildium::LastUpdatedByUserMessage](docs/LastUpdatedByUserMessage.md)
- [Buildium::LeaseAccountDetailMessage](docs/LeaseAccountDetailMessage.md)
- [Buildium::LeaseAutoAllocatedPaymentPostMessage](docs/LeaseAutoAllocatedPaymentPostMessage.md)
- [Buildium::LeaseChargeLineSaveMessage](docs/LeaseChargeLineSaveMessage.md)
- [Buildium::LeaseChargePostMessage](docs/LeaseChargePostMessage.md)
@@ -805,10 +856,11 @@
- [Buildium::LeaseLedgerCreditPostMessage](docs/LeaseLedgerCreditPostMessage.md)
- [Buildium::LeaseLedgerDepositWithholdingLinePostMessage](docs/LeaseLedgerDepositWithholdingLinePostMessage.md)
- [Buildium::LeaseLedgerDepositWithholdingPostMessage](docs/LeaseLedgerDepositWithholdingPostMessage.md)
- [Buildium::LeaseLedgerPaymentLineSaveMessage](docs/LeaseLedgerPaymentLineSaveMessage.md)
- [Buildium::LeaseLedgerPaymentPostMessage](docs/LeaseLedgerPaymentPostMessage.md)
+ - [Buildium::LeaseLedgerPaymentPutMessage](docs/LeaseLedgerPaymentPutMessage.md)
- [Buildium::LeaseLedgerRefundLineMessage](docs/LeaseLedgerRefundLineMessage.md)
- [Buildium::LeaseLedgerRefundLinePostMessage](docs/LeaseLedgerRefundLinePostMessage.md)
- [Buildium::LeaseLedgerRefundMessage](docs/LeaseLedgerRefundMessage.md)
- [Buildium::LeaseLedgerRefundPostMessage](docs/LeaseLedgerRefundPostMessage.md)
- [Buildium::LeaseLedgerReversePaymentNSFChargePostMessage](docs/LeaseLedgerReversePaymentNSFChargePostMessage.md)
@@ -847,10 +899,20 @@
- [Buildium::LockPeriodSettingsGlobalMessage](docs/LockPeriodSettingsGlobalMessage.md)
- [Buildium::LockPeriodSettingsOverridesMessage](docs/LockPeriodSettingsOverridesMessage.md)
- [Buildium::LoggedByStaffUserMessage](docs/LoggedByStaffUserMessage.md)
- [Buildium::LookupMessage](docs/LookupMessage.md)
- [Buildium::MailingTemplateMessage](docs/MailingTemplateMessage.md)
+ - [Buildium::MeterReadingDetailMessage](docs/MeterReadingDetailMessage.md)
+ - [Buildium::MeterReadingDetailPutMessage](docs/MeterReadingDetailPutMessage.md)
+ - [Buildium::MeterReadingDetailsDeleteSearchMessage](docs/MeterReadingDetailsDeleteSearchMessage.md)
+ - [Buildium::MeterReadingDetailsMessage](docs/MeterReadingDetailsMessage.md)
+ - [Buildium::MeterReadingDetailsPutMessage](docs/MeterReadingDetailsPutMessage.md)
+ - [Buildium::MeterReadingDetailsPutSearchMessage](docs/MeterReadingDetailsPutSearchMessage.md)
+ - [Buildium::MeterReadingDetailsSearchMessage](docs/MeterReadingDetailsSearchMessage.md)
+ - [Buildium::MeterReadingMessage](docs/MeterReadingMessage.md)
+ - [Buildium::MeterReadingSearchMessage](docs/MeterReadingSearchMessage.md)
+ - [Buildium::MultipleBillPaymentsPostMessage](docs/MultipleBillPaymentsPostMessage.md)
- [Buildium::NoteMessage](docs/NoteMessage.md)
- [Buildium::NotePostMessage](docs/NotePostMessage.md)
- [Buildium::NotePutMessage](docs/NotePutMessage.md)
- [Buildium::NoteSearchMessage](docs/NoteSearchMessage.md)
- [Buildium::OfflinePaymentsMessage](docs/OfflinePaymentsMessage.md)
@@ -866,10 +928,11 @@
- [Buildium::OwnershipAccountLedgerChargeLinesSaveMessage](docs/OwnershipAccountLedgerChargeLinesSaveMessage.md)
- [Buildium::OwnershipAccountLedgerChargePostMessage](docs/OwnershipAccountLedgerChargePostMessage.md)
- [Buildium::OwnershipAccountLedgerChargePutMessage](docs/OwnershipAccountLedgerChargePutMessage.md)
- [Buildium::OwnershipAccountLedgerPaymentLineSaveMessage](docs/OwnershipAccountLedgerPaymentLineSaveMessage.md)
- [Buildium::OwnershipAccountLedgerPaymentPostMessage](docs/OwnershipAccountLedgerPaymentPostMessage.md)
+ - [Buildium::OwnershipAccountLedgerPaymentPutMessage](docs/OwnershipAccountLedgerPaymentPutMessage.md)
- [Buildium::OwnershipAccountOutstandingBalanceMessage](docs/OwnershipAccountOutstandingBalanceMessage.md)
- [Buildium::OwnershipAccountOutstandingBalanceSearchMessage](docs/OwnershipAccountOutstandingBalanceSearchMessage.md)
- [Buildium::OwnershipAccountRecurringCreditMessage](docs/OwnershipAccountRecurringCreditMessage.md)
- [Buildium::OwnershipAccountRecurringPaymentMessage](docs/OwnershipAccountRecurringPaymentMessage.md)
- [Buildium::OwnershipAccountRefundLineMessage](docs/OwnershipAccountRefundLineMessage.md)
@@ -957,10 +1020,11 @@
- [Buildium::RetailCashUnitMessage](docs/RetailCashUnitMessage.md)
- [Buildium::RetailCashUserDataMessage](docs/RetailCashUserDataMessage.md)
- [Buildium::RetailCashUserMessage](docs/RetailCashUserMessage.md)
- [Buildium::RetailCashUserPutMessage](docs/RetailCashUserPutMessage.md)
- [Buildium::RetailCashUsersSearchMessage](docs/RetailCashUsersSearchMessage.md)
+ - [Buildium::SafeWaitHandle](docs/SafeWaitHandle.md)
- [Buildium::SaveAddressMessage](docs/SaveAddressMessage.md)
- [Buildium::SaveEmergencyContactMessage](docs/SaveEmergencyContactMessage.md)
- [Buildium::TaskCategoryMessage](docs/TaskCategoryMessage.md)
- [Buildium::TaskCategoryPutMessage](docs/TaskCategoryPutMessage.md)
- [Buildium::TaskCategoryResponseMessage](docs/TaskCategoryResponseMessage.md)
@@ -980,10 +1044,11 @@
- [Buildium::ToDoTaskPostMessage](docs/ToDoTaskPostMessage.md)
- [Buildium::ToDoTaskPutMessage](docs/ToDoTaskPutMessage.md)
- [Buildium::ToDoTaskSearchMessage](docs/ToDoTaskSearchMessage.md)
- [Buildium::UndepositedFundsMessage](docs/UndepositedFundsMessage.md)
- [Buildium::UnitAgreementMessage](docs/UnitAgreementMessage.md)
+ - [Buildium::UnitEntityMessage](docs/UnitEntityMessage.md)
- [Buildium::UserMessage](docs/UserMessage.md)
- [Buildium::UserRoleMessage](docs/UserRoleMessage.md)
- [Buildium::UserSearchMessage](docs/UserSearchMessage.md)
- [Buildium::VehicleMessage](docs/VehicleMessage.md)
- [Buildium::VendorCategoryMessage](docs/VendorCategoryMessage.md)
@@ -1004,9 +1069,10 @@
- [Buildium::VendorSearchMessage](docs/VendorSearchMessage.md)
- [Buildium::VendorTaxInformationMessage](docs/VendorTaxInformationMessage.md)
- [Buildium::VendorTransactionMessage](docs/VendorTransactionMessage.md)
- [Buildium::VendorTransactionSearchMessage](docs/VendorTransactionSearchMessage.md)
- [Buildium::VideoLinkRequestPostMessage](docs/VideoLinkRequestPostMessage.md)
+ - [Buildium::WaitHandle](docs/WaitHandle.md)
- [Buildium::WorkOrderEntryContactMessage](docs/WorkOrderEntryContactMessage.md)
- [Buildium::WorkOrderEntryContactResourceMessage](docs/WorkOrderEntryContactResourceMessage.md)
- [Buildium::WorkOrderLineItemMessage](docs/WorkOrderLineItemMessage.md)
- [Buildium::WorkOrderLineItemSaveMessage](docs/WorkOrderLineItemSaveMessage.md)
- [Buildium::WorkOrderMessage](docs/WorkOrderMessage.md)