New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

buildium-ruby

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buildium-ruby

  • 3.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

buildium-ruby

Buildium - the Ruby gem for the Open API, powered by Buildium

DO NOT EDIT THIS README. Edit the one in bin/README.md instead and rerun the rebuild.sh file, see below.

Introduction

Welcome!

Welcome to Buildium’s API—a powerful, RESTful programming interface that lets you leverage valuable Buildium data.

Using HTTP requests, you can create integrations with applications that specialize in accounting, lead tracking, and more. Enjoy greater flexibility, transparency, and control over your business!

What's in this Guide?

This guide is full of simple, easy-to-follow instructions that’ll help you use Buildium’s API like a pro.

Topics include:

  • choosing the right resources for your use case
  • making HTTP requests to any resource
  • understanding data and response codes

Getting Started

Excited to get going? We’ll walk you through the setup process.

Note: To take advantage of the Buildium Open API you must have a <a target="_blank" href="https://www.buildium.com/pricing/\">**Premium Subscription**.

Account Configuration

Before you can use Buildium’s API, you’ll need to make some tweaks to your account settings.


Enabling the API

In order to start creating your keys and making requests, you’ll need to enable the API.

Tip: You’ll need an administrator user role with access to Application settings to set things up properly.


Let's Begin!

  1. Sign in to your Buildium account from your browser.

  2. Open the Settings menu and click Application settings.

  3. Under System preferences, click Api settings. A modal will appear.

  4. Click the Open API toggle to turn it on. Then click Save.

<video width="100%" autoplay loop muted> <source src="enable_open_api.mp4" type="video/mp4" />

Congratulations! Your account's enabled. Now, you’re ready to start managing API keys.

If you are having issues enabling the API within your account you can submit a Support request for assistance.


API Keys

Account-level API keys authenticate every request and keep things secure.

API keys have two components: a “client ID” and a “secret”.

  • Client IDs are similar to usernames. They’re used to identify your Buildium account and are safe to share.
  • Secrets are similar to passwords. They must be kept confidential.

Whenever you make a request, you’ll need the API key’s client ID and secret. If you forget it, make a mistake, or try to use information that’s linked to a deleted key, the API will return a 401 response code.

Tip: We compiled a list of best practices that detail how securely store API keys. Give it a read!

Creating API Keys

Now that the Open APi is enabled, you’ll be able to create API keys. You’re almost there!

Tip: You’ll need an administrator user role to complete this step, too.


How to create an API key

  1. Sign in to your Buildium account from your browser.

  2. Open the Settings menu and click Developer Tools. The page will open automatically.

  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.

  6. You successfully created an API key!

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.


<video width="100%" autoplay loop muted> <source src="generate_open_api_key.mp4" type="video/mp4" />


You have now successfully created an API key and have everything you need to send requests to the Buildium API!

Before moving on to making your first request please review Keeping your Keys Safe for an overview on securely storing your API keys.

If you are having issues creating API keys you can submit a Support request for assistance.

Keeping API Keys Safe

Based on their permissions, API keys could have full access to your account’s Buildium data. It’s important that you only grant access to trusted applications, securely record secrets, and consider a password manager to stay organized.

  • Avoid hard-coding client IDs and secrets inside source files.
  • Avoid storing client IDs and secrets in any files that may be committed to source control, particularly cloud-based source control platforms.
  • Apply restrictions to client IDs and secrets shared with your staff. You can restrict a key to particular Buildium entities or to read-only access (GET resources only).
  • Avoid sharing client IDs and secrets across public, insecure platforms.
  • Establish a process to regularly recreate your client IDs and secrets from your Buildium account.

How to Make a Request

You’ve done a great job setting up your account, Now, we’ll walk you through how to access your data. It’s very straightforward and should only take a few minutes!

Tip: Looking for the right HTTP client? If you’re just getting started, we recommend Postman.


Let's Get Started!

Step 1: Get Your API Key

If you haven't yet done so, obtain your API key client ID and secret from your Buildium account. Your API key is how the Buildium API authenticates requests and ensures only you can access your data.

See Getting Started for a deeper dive into enabling the API and creating keys.

Step 2: Install a HTTP client

The Buildium API supports any standard HTTP client. If you're looking for a user-friendly HTTP client application, we recommend Postman – it allows you to access the Buildium API without writing code. We’ll use Postman for our example below to demonstrate sending an API request.

Step 3: Make a Sample Request

Let's dive in and make a simple request to get all the Rental Properties response message now includes the property IsBankAccount. This is a boolean property that indicates whether the general ledger account is also a bank account.

  • A Country property has been added to all Address messages. This property contains an enumeration indicating the country of the address.

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: v1
  • Package version: 3.1.0
  • Build package: org.openapitools.codegen.languages.RubyClientCodegen

Installation

Build a gem

To build the Ruby code into a gem:

gem build buildium-ruby.gemspec

Then either install the gem locally:

gem install ./buildium-ruby-3.1.0.gem

(for development, run gem install --dev ./buildium-ruby-3.1.0.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'buildium-ruby', '~> 3.1.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:

gem 'buildium-ruby', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'buildium-ruby'

# Setup authorization
Buildium.configure do |config|
  # Configure API key authorization: clientId
  config.api_key['clientId'] = '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['clientId'] = 'Bearer'

  # Configure API key authorization: clientSecret
  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::AdministrationApi.new

begin
  #Retrieve account info
  result = api_instance.get_account_info
  p result
rescue Buildium::ApiError => e
  puts "Exception when calling AdministrationApi->get_account_info: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://api.buildium.com

ClassMethodHTTP requestDescription
Buildium::AdministrationApiget_account_infoGET /v1/administration/accountRetrieve account info
Buildium::AdministrationApiget_accounting_lock_period_settingsGET /v1/administration/accountinglockperiodRetrieve accounting lock periods
Buildium::AdministrationApiget_all_user_rolesGET /v1/userrolesRetrieve all user roles
Buildium::AdministrationApiget_all_usersGET /v1/usersRetrieve all users
Buildium::AdministrationApiget_global_partial_payment_settingsGET /v1/administration/residentsettings/partialpaymentsettingsRetrieve the partial payment settings for residents
Buildium::AdministrationApiget_user_by_idGET /v1/users/{userId}Retrieve a user
Buildium::AdministrationApiget_user_role_by_idGET /v1/userroles/{userRoleId}Retrieve a user role
Buildium::AdministrationApipatch_global_partial_payment_settingsPATCH /v1/administration/residentsettings/partialpaymentsettingsUpdate the partial payment settings for residents
Buildium::AppliancesApicreate_association_appliancePOST /v1/associations/appliancesCreate an appliance
Buildium::AppliancesApicreate_association_appliance_service_historyPOST /v1/associations/appliances/{applianceId}/servicehistoryCreate a service history
Buildium::AppliancesApidelete_association_appliancesDELETE /v1/associations/appliances/{applianceId}Delete an appliance
Buildium::AppliancesApiget_all_association_appliance_service_historyGET /v1/associations/appliances/{applianceId}/servicehistoryRetrieve all service history
Buildium::AppliancesApiget_association_appliance_by_idGET /v1/associations/appliances/{applianceId}Retrieve an appliance
Buildium::AppliancesApiget_association_appliance_service_history_by_idGET /v1/associations/appliances/{applianceId}/servicehistory/{serviceHistoryId}Retrieve a service history
Buildium::AppliancesApiget_association_appliancesGET /v1/associations/appliancesRetrieve all appliances
Buildium::AppliancesApiupdate_association_appliancePUT /v1/associations/appliances/{applianceId}Update an appliance
Buildium::ApplicantsApicreate_applicantPOST /v1/applicantsCreate an applicant
Buildium::ApplicantsApicreate_applicant_groupPOST /v1/applicants/groupsCreate an applicant group
Buildium::ApplicantsApicreate_applicant_notePOST /v1/applicants/{applicantId}/notesCreate an applicant note
Buildium::ApplicantsApicreate_application_group_notePOST /v1/applicants/groups/{applicantGroupId}/notesCreate an applicant group note
Buildium::ApplicantsApiget_all_applicant_notesGET /v1/applicants/{applicantId}/notesRetrieve all applicant notes
Buildium::ApplicantsApiget_applicant_by_idGET /v1/applicants/{applicantId}Retrieve an applicant
Buildium::ApplicantsApiget_applicant_group_by_idGET /v1/applicants/groups/{applicantGroupId}Retrieve an applicant group
Buildium::ApplicantsApiget_applicant_group_note_by_note_idGET /v1/applicants/groups/{applicantGroupId}/notes/{noteId}Retrieve an applicant group note
Buildium::ApplicantsApiget_applicant_group_notesGET /v1/applicants/groups/{applicantGroupId}/notesRetrieve all applicant group notes
Buildium::ApplicantsApiget_applicant_groupsGET /v1/applicants/groupsRetrieve all applicant groups
Buildium::ApplicantsApiget_applicant_note_by_idGET /v1/applicants/{applicantId}/notes/{noteId}Retrieve an applicant note
Buildium::ApplicantsApiget_applicantsGET /v1/applicantsRetrieve all applicants
Buildium::ApplicantsApiget_application_for_applicant_by_idGET /v1/applicants/{applicantId}/applications/{applicationId}Retrieve an application
Buildium::ApplicantsApiget_applications_for_applicantGET /v1/applicants/{applicantId}/applicationsRetrieve all applications
Buildium::ApplicantsApiupdate_applicantPUT /v1/applicants/{applicantId}Update an applicant
Buildium::ApplicantsApiupdate_applicant_groupPUT /v1/applicants/groups/{applicantGroupId}Update an applicant group
Buildium::ApplicantsApiupdate_applicationPUT /v1/applicants/{applicantId}/applications/{applicationId}Update an application
Buildium::ApplicantsApiupdate_application_group_notePUT /v1/applicants/groups/{applicantGroupId}/notes/{noteId}Update an applicant group note
Buildium::ArchitecturalRequestsApicreate_architectural_request_asyncPOST /v1/associations/ownershipaccounts/architecturalrequestsCreate an architectural request
Buildium::ArchitecturalRequestsApicreate_upload_file_requestPOST /v1/associations/ownershipaccounts/architecturalrequests/{architecturalRequestId}/files/uploadrequestsUpload an architectural request file
Buildium::ArchitecturalRequestsApidownload_architectural_request_file_asyncPOST /v1/associations/ownershipaccounts/architecturalrequests/{architecturalRequestId}/files/{fileId}/downloadrequestsDownload an architectural request file
Buildium::ArchitecturalRequestsApiget_architectural_request_by_idGET /v1/associations/ownershipaccounts/architecturalrequests/{architecturalRequestId}Retrieve an architectural request
Buildium::ArchitecturalRequestsApiget_architectural_request_file_asyncGET /v1/associations/ownershipaccounts/architecturalrequests/{architecturalRequestId}/files/{fileId}Retrieve an architectural request file
Buildium::ArchitecturalRequestsApiget_architectural_request_files_history_paged_asyncGET /v1/associations/ownershipaccounts/architecturalrequests/{architecturalRequestId}/filesRetrieve all files for an architectural request
Buildium::ArchitecturalRequestsApiget_architectural_requestsGET /v1/associations/ownershipaccounts/architecturalrequestsRetrieve all architectural requests
Buildium::AssociationMeterReadingsApidelete_meter_reading_details_for_associationDELETE /v1/associations/{associationId}/meterreadings/summaryDelete meter reading details for a given date
Buildium::AssociationMeterReadingsApiget_association_meter_reading_details_asyncGET /v1/associations/{associationId}/meterreadings/summaryRetrieve all meter reading details
Buildium::AssociationMeterReadingsApiget_meter_readings_for_associationGET /v1/associations/{associationId}/meterreadingsRetrieve all meter readings
Buildium::AssociationMeterReadingsApiupsert_association_meter_reading_details_asyncPUT /v1/associations/{associationId}/meterreadings/summaryCreate/Update meter reading details
Buildium::AssociationOwnersApicreate_association_ownerPOST /v1/associations/ownersCreate an owner
Buildium::AssociationOwnersApicreate_association_owner_notePOST /v1/associations/owners/{ownerId}/notesCreate a note
Buildium::AssociationOwnersApiget_all_association_ownersGET /v1/associations/ownersRetrieve all owners
Buildium::AssociationOwnersApiget_association_owner_by_idGET /v1/associations/owners/{ownerId}Retrieve an owner
Buildium::AssociationOwnersApiget_association_owner_note_by_note_idGET /v1/associations/owners/{ownerId}/notes/{noteId}Retrieve a note
Buildium::AssociationOwnersApiget_association_owner_notesGET /v1/associations/owners/{ownerId}/notesRetrieve all notes
Buildium::AssociationOwnersApiget_unit_occupancy_statuses_by_id_for_association_ownerGET /v1/associations/owners/{ownerId}/units/{unitId}Retrieve an occupancy status
Buildium::AssociationOwnersApiget_unit_occupancy_statuses_for_association_ownerGET /v1/associations/owners/{ownerId}/unitsRetrieve all occupancy statuses
Buildium::AssociationOwnersApiupdate_association_ownerPUT /v1/associations/owners/{ownerId}Update an owner
Buildium::AssociationOwnersApiupdate_association_owner_notePUT /v1/associations/owners/{ownerId}/notes/{noteId}Update a note
Buildium::AssociationOwnersApiupdate_association_owner_occupancy_statusPUT /v1/associations/owners/{ownerId}/units/{unitId}Update occupancy status
Buildium::AssociationTenantsApicreate_association_tenantPOST /v1/associations/tenantsCreate a tenant
Buildium::AssociationTenantsApicreate_association_tenant_notePOST /v1/associations/tenants/{tenantId}/notesCreate a note
Buildium::AssociationTenantsApiget_association_tenant_by_idGET /v1/associations/tenants/{tenantId}Retrieve a tenant
Buildium::AssociationTenantsApiget_association_tenant_note_by_idGET /v1/associations/tenants/{tenantId}/notes/{noteId}Retrieve a note
Buildium::AssociationTenantsApiget_association_tenant_notesGET /v1/associations/tenants/{tenantId}/notesRetrieve all notes
Buildium::AssociationTenantsApiget_association_tenantsGET /v1/associations/tenantsRetrieve all tenants
Buildium::AssociationTenantsApiupdate_association_tenantPUT /v1/associations/tenants/{tenantId}Update a tenant
Buildium::AssociationTenantsApiupdate_association_tenant_notePUT /v1/associations/tenants/{tenantId}/notes/{noteId}Update a note
Buildium::AssociationUnitsApicreate_association_unitPOST /v1/associations/unitsCreate a unit
Buildium::AssociationUnitsApicreate_association_unit_notePOST /v1/associations/units/{unitId}/notesCreate a note
Buildium::AssociationUnitsApiget_all_association_unitsGET /v1/associations/unitsRetrieve all units
Buildium::AssociationUnitsApiget_association_unit_by_idGET /v1/associations/units/{unitId}Retrieve a unit
Buildium::AssociationUnitsApiget_association_unit_note_by_note_idGET /v1/associations/units/{unitId}/notes/{noteId}Retrieve a note
Buildium::AssociationUnitsApiget_association_unit_notesGET /v1/associations/units/{unitId}/notesRetrieve all notes
Buildium::AssociationUnitsApiupdate_association_unitPUT /v1/associations/units/{unitId}Update a unit
Buildium::AssociationUnitsApiupdate_association_unit_notePUT /v1/associations/units/{unitId}/notes/{noteId}Update a note
Buildium::AssociationsApicreate_associationPOST /v1/associationsCreate an association
Buildium::AssociationsApicreate_association_notePOST /v1/associations/{associationId}/notesCreate a note
Buildium::AssociationsApiget_association_by_idGET /v1/associations/{associationId}Retrieve an association
Buildium::AssociationsApiget_association_note_by_note_idGET /v1/associations/{associationId}/notes/{noteId}Retrieve a note
Buildium::AssociationsApiget_association_notesGET /v1/associations/{associationId}/notesRetrieve all notes
Buildium::AssociationsApiget_association_preferred_vendorsGET /v1/associations/{associationId}/vendorsRetrieve all preferred vendors
Buildium::AssociationsApiget_associationsGET /v1/associationsRetrieve all associations
Buildium::AssociationsApiget_bank_lock_box_dataGET /v1/associations/banklockboxdataRetrieve all association bank lockbox data
Buildium::AssociationsApiget_e_pay_settings_for_association_by_idGET /v1/associations/{associationId}/epaysettingsRetrieve ePay settings
Buildium::AssociationsApiinactivate_associationPOST /v1/associations/{associationId}/inactivationrequestInactivate an association
Buildium::AssociationsApireactivate_associationPOST /v1/associations/{associationId}/reactivationrequestReactivate an association
Buildium::AssociationsApiupdate_associationPUT /v1/associations/{associationId}Update an association
Buildium::AssociationsApiupdate_association_notePUT /v1/associations/{associationId}/notes/{noteId}Update a note
Buildium::AssociationsApiupdate_association_preferred_vendorsPUT /v1/associations/{associationId}/vendorsUpdate preferred vendors
Buildium::AssociationsApiupdate_e_pay_settings_for_associationPUT /v1/associations/{associationId}/epaysettingsUpdate ePay settings
Buildium::BankAccountsApiclear_transactionsPOST /v1/bankaccounts/{bankAccountId}/reconciliations/{reconciliationId}/cleartransactionsrequestClear transactions for a reconciliation
Buildium::BankAccountsApicreate_bank_accountPOST /v1/bankaccountsCreate a bank account
Buildium::BankAccountsApicreate_bank_account_checkPOST /v1/bankaccounts/{bankAccountId}/checksCreate a check
Buildium::BankAccountsApicreate_bank_account_depositPOST /v1/bankaccounts/{bankAccountId}/depositsCreate a deposit
Buildium::BankAccountsApicreate_bank_account_transferPOST /v1/bankaccounts/{bankAccountId}/transfersCreate a transfer
Buildium::BankAccountsApicreate_check_upload_file_requestPOST /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files/uploadrequestsUpload a file for a check
Buildium::BankAccountsApicreate_pending_reconciliationsPOST /v1/bankaccounts/{bankAccountId}/reconciliationsCreate a reconciliation
Buildium::BankAccountsApicreate_quick_depositPOST /v1/bankaccounts/{bankAccountId}/quickdepositsCreate a quick deposit
Buildium::BankAccountsApicreate_withdrawal_for_bank_accountPOST /v1/bankaccounts/{bankAccountId}/withdrawalsCreate a withdrawal
Buildium::BankAccountsApidelete_bank_account_check_fileDELETE /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files/{fileId}Delete a file for a check
Buildium::BankAccountsApidownload_check_filePOST /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files/{fileId}/downloadrequestsDownload a file for a check
Buildium::BankAccountsApifinalize_reconciliationPOST /v1/bankaccounts/{bankAccountId}/reconciliations/{reconciliationId}/finalizerequestFinalize a manual reconciliation
Buildium::BankAccountsApiget_all_bank_accountsGET /v1/bankaccountsRetrieve all bank accounts
Buildium::BankAccountsApiget_all_quick_depositsGET /v1/bankaccounts/{bankAccountId}/quickdepositsRetrieve all quick deposits
Buildium::BankAccountsApiget_bank_accountGET /v1/bankaccounts/{bankAccountId}Retrieve a bank account
Buildium::BankAccountsApiget_bank_account_check_file_by_idGET /v1/bankaccounts/{bankAccountId}/checks/{checkId}/files/{fileId}Retrieve a file for a check
Buildium::BankAccountsApiget_bank_account_checksGET /v1/bankaccounts/{bankAccountId}/checksRetrieve all checks
Buildium::BankAccountsApiget_bank_account_deposit_by_idGET /v1/bankaccounts/{bankAccountId}/deposits/{depositId}Retrieve a deposit
Buildium::BankAccountsApiget_bank_account_depositsGET /v1/bankaccounts/{bankAccountId}/depositsRetrieve all deposits
Buildium::BankAccountsApiget_bank_account_reconciliation_transactionsGET /v1/bankaccounts/{bankAccountId}/reconciliations/{reconciliationId}/transactionsRetrieve all transactions for a reconciliation
Buildium::BankAccountsApiget_bank_account_transaction_by_idGET /v1/bankaccounts/{bankAccountId}/transactions/{transactionId}Retrieve a transaction
Buildium::BankAccountsApiget_bank_account_transactionsGET /v1/bankaccounts/{bankAccountId}/transactionsRetrieve all transactions
Buildium::BankAccountsApiget_bank_account_transfer_by_idGET /v1/bankaccounts/{bankAccountId}/transfers/{transferId}Retrieve a transfer
Buildium::BankAccountsApiget_bank_account_transfersGET /v1/bankaccounts/{bankAccountId}/transfersRetrieve all transfers
Buildium::BankAccountsApiget_bank_account_withdrawal_by_idGET /v1/bankaccounts/{bankAccountId}/withdrawals/{withdrawalId}Retrieve a withdrawal
Buildium::BankAccountsApiget_bank_account_withdrawalsGET /v1/bankaccounts/{bankAccountId}/withdrawalsRetrieve all withdrawals
Buildium::BankAccountsApiget_check_for_bank_accountGET /v1/bankaccounts/{bankAccountId}/checks/{checkId}Retrieve a check
Buildium::BankAccountsApiget_files_for_bank_account_checkGET /v1/bankaccounts/{bankAccountId}/checks/{checkId}/filesRetrieve all files for a check
Buildium::BankAccountsApiget_quick_deposit_by_idGET /v1/bankaccounts/{bankAccountId}/quickdeposits/{quickDepositId}Retrieve a quick deposit
Buildium::BankAccountsApiget_reconciliation_balance_by_idGET /v1/bankaccounts/{bankAccountId}/reconciliations/{reconciliationId}/balancesRetrieve a reconciliation's balance
Buildium::BankAccountsApiget_reconciliation_by_idGET /v1/bankaccounts/{bankAccountId}/reconciliations/{reconciliationId}Retrieve a reconciliation
Buildium::BankAccountsApiget_reconciliationsGET /v1/bankaccounts/{bankAccountId}/reconciliationsRetrieve all reconciliations
Buildium::BankAccountsApiget_undeposited_fundsGET /v1/bankaccounts/{bankAccountId}/undepositedfundsRetrieve all undeposited funds
Buildium::BankAccountsApiunclear_transactionsPOST /v1/bankaccounts/{bankAccountId}/reconciliations/{reconciliationId}/uncleartransactionsrequestUn-clear transactions for a reconciliation
Buildium::BankAccountsApiupdate_bank_accountPUT /v1/bankaccounts/{bankAccountId}Update a bank account
Buildium::BankAccountsApiupdate_bank_account_depositPUT /v1/bankaccounts/{bankAccountId}/deposits/{depositId}Update a deposit
Buildium::BankAccountsApiupdate_bank_account_transferPUT /v1/bankaccounts/{bankAccountId}/transfers/{transferId}Update a transfer
Buildium::BankAccountsApiupdate_bank_account_withdrawalPUT /v1/bankaccounts/{bankAccountId}/withdrawals/{withdrawalId}Update a withdrawal
Buildium::BankAccountsApiupdate_check_for_bank_accountPUT /v1/bankaccounts/{bankAccountId}/checks/{checkId}Update a check
Buildium::BankAccountsApiupdate_quick_depositPUT /v1/bankaccounts/{bankAccountId}/quickdeposits/{quickDepositId}Update a quick deposit
Buildium::BankAccountsApiupdate_reconciliationPUT /v1/bankaccounts/{bankAccountId}/reconciliations/{reconciliationId}Update a reconciliation
Buildium::BankAccountsApiupdate_reconciliation_balancesPUT /v1/bankaccounts/{bankAccountId}/reconciliations/{reconciliationId}/balancesUpdate a reconciliation's balance
Buildium::BillsApicreate_billPOST /v1/billsCreate a bill
Buildium::BillsApicreate_bill_paymentPOST /v1/bills/{billId}/paymentsCreate a bill payment
Buildium::BillsApicreate_bill_upload_file_requestPOST /v1/bills/{billId}/files/uploadrequestsUpload a bill file
Buildium::BillsApicreate_multiple_bill_paymentsPOST /v1/bills/paymentsCreate a payment for multiple bills with one check
Buildium::BillsApidelete_bill_fileDELETE /v1/bills/{billId}/files/{fileId}Delete a bill file
Buildium::BillsApidownload_bill_filePOST /v1/bills/{billId}/files/{fileId}/downloadrequestDownload a bill file
Buildium::BillsApiget_all_files_for_billGET /v1/bills/{billId}/filesRetrieve all files for a bill
Buildium::BillsApiget_bill_by_idGET /v1/bills/{billId}Retrieve a bill
Buildium::BillsApiget_bill_file_by_idGET /v1/bills/{billId}/files/{fileId}Retrieve a file for a bill
Buildium::BillsApiget_bill_payment_by_idGET /v1/bills/{billId}/payments/{paymentId}Retrieve a bill payment
Buildium::BillsApiget_bill_paymentsGET /v1/bills/{billId}/paymentsRetrieve all bill payments
Buildium::BillsApiget_bills_asyncGET /v1/billsRetrieve all bills
Buildium::BillsApipatch_billPATCH /v1/bills/{billId}Update a bill
Buildium::BillsApiupdate_billPUT /v1/bills/{billId}Update a bill
Buildium::BoardMembersApicreate_board_memberPOST /v1/associations/{associationId}/boardmembersCreate a board member
Buildium::BoardMembersApidelete_board_memberDELETE /v1/associations/{associationId}/boardmembers/{boardMemberId}Delete a board member
Buildium::BoardMembersApiget_all_association_board_membersGET /v1/associations/{associationId}/boardmembersRetrieve all board members
Buildium::BoardMembersApiget_association_board_member_by_idGET /v1/associations/{associationId}/boardmembers/{boardMemberId}Retrieve a board member
Buildium::BoardMembersApiupdate_board_memberPUT /v1/associations/{associationId}/boardmembers/{boardMemberId}Update a board member
Buildium::BudgetsApicreate_budget_asyncPOST /v1/budgetsCreate a budget
Buildium::BudgetsApiget_budget_by_idGET /v1/budgets/{budgetId}Retrieve a budget
Buildium::BudgetsApiget_budgetsGET /v1/budgetsRetrieve all budgets
Buildium::BudgetsApiupdate_budgetPUT /v1/budgets/{budgetId}Update a budget
Buildium::ClientLeadsApiget_client_leadsGET /v1/clientleadsRetrieve all client leads
Buildium::ClientLeadsApiget_prospective_clientGET /v1/clientleads/{clientLeadId}Retrieve a client lead
Buildium::CommunicationsApicreate_announcementPOST /v1/communications/announcementsCreate an announcement
Buildium::CommunicationsApicreate_emailPOST /v1/communications/emailsSend an email
Buildium::CommunicationsApicreate_phone_logPOST /v1/communications/phonelogsCreate a phone log
Buildium::CommunicationsApiexpire_announcementPOST /v1/communications/announcements/{announcementId}/expirationrequestExpire an announcement
Buildium::CommunicationsApiget_all_announcementsGET /v1/communications/announcementsRetrieve all announcements
Buildium::CommunicationsApiget_announcement_by_idGET /v1/communications/announcements/{announcementId}Retrieve an announcement
Buildium::CommunicationsApiget_announcement_propertiesGET /v1/communications/announcements/{announcementId}/propertiesRetrieve all announcement properties
Buildium::CommunicationsApiget_email_by_idGET /v1/communications/emails/{emailId}Retrieve an email
Buildium::CommunicationsApiget_email_recipientsGET /v1/communications/emails/{emailId}/recipientsRetrieve all email recipients
Buildium::CommunicationsApiget_emailsGET /v1/communications/emailsRetrieve all emails
Buildium::CommunicationsApiget_mailing_templatesGET /v1/communications/templatesRetrieve all communication templates
Buildium::CommunicationsApiget_mailing_templates_by_idGET /v1/communications/templates/{templateId}Retrieve a communication template
Buildium::CommunicationsApiget_phone_log_by_idGET /v1/communications/phonelogs/{phoneLogId}Retrieve a phone log
Buildium::CommunicationsApiget_phone_logsGET /v1/communications/phonelogsRetrieve all phone logs
Buildium::CommunicationsApiupdate_phone_logPUT /v1/communications/phonelogs/{phoneLogId}Update a phone log
Buildium::ContactRequestsApicreate_contact_request_taskPOST /v1/tasks/contactrequestsCreate a contact request
Buildium::ContactRequestsApiget_contact_request_task_by_idGET /v1/tasks/contactrequests/{contactRequestTaskId}Retrieve a contact request
Buildium::ContactRequestsApiget_contact_request_tasksGET /v1/tasks/contactrequestsRetrieve all contact requests
Buildium::ContactRequestsApiupdate_contact_request_taskPUT /v1/tasks/contactrequests/{contactRequestTaskId}Update a contact request
Buildium::FilesApicreate_file_categoryPOST /v1/files/categoriesCreate a category
Buildium::FilesApicreate_upload_file_request_asyncPOST /v1/files/uploadrequestsUpload a file
Buildium::FilesApiget_file_by_idGET /v1/files/{fileId}Retrieve a file
Buildium::FilesApiget_file_categoriesGET /v1/files/categoriesRetrieve all categories
Buildium::FilesApiget_file_category_by_idGET /v1/files/categories/{fileCategoryId}Retrieve a category
Buildium::FilesApiget_file_download_url_asyncPOST /v1/files/{fileId}/downloadrequestDownload a file
Buildium::FilesApiget_file_share_settings_by_idGET /v1/files/{fileId}/sharingRetrieve file share settings
Buildium::FilesApiget_filesGET /v1/filesRetrieve all files
Buildium::FilesApiupdate_filePUT /v1/files/{fileId}Update a file
Buildium::FilesApiupdate_file_categoryPUT /v1/files/categories/{fileCategoryId}Update a category
Buildium::FilesApiupdate_file_sharing_settingPUT /v1/files/{fileId}/sharingUpdate file share settings
Buildium::GeneralLedgerApicreate_general_journal_entryPOST /v1/generalledger/journalentriesCreate a general journal entry
Buildium::GeneralLedgerApicreate_general_ledger_accountPOST /v1/glaccountsCreate a general ledger account
Buildium::GeneralLedgerApiget_all_gl_accountsGET /v1/glaccountsRetrieve all general ledger accounts
Buildium::GeneralLedgerApiget_all_transactionsGET /v1/generalledger/transactionsRetrieve all general ledger transactions
Buildium::GeneralLedgerApiget_general_ledger_entriesGET /v1/generalledgerRetrieve all general ledger entries
Buildium::GeneralLedgerApiget_gl_account_balancesGET /v1/glaccounts/balancesRetrieve all general ledger account balances
Buildium::GeneralLedgerApiget_gl_account_by_idGET /v1/glaccounts/{glAccountId}Retrieve a general ledger account
Buildium::GeneralLedgerApiget_transaction_by_idGET /v1/generalledger/transactions/{transactionId}Retrieve a general ledger transaction
Buildium::GeneralLedgerApiupdate_general_journal_entryPUT /v1/generalledger/journalentries/{journalEntryId}Update a general journal entry
Buildium::GeneralLedgerApiupdate_gl_accountPUT /v1/glaccounts/{glAccountId}Update a general ledger account
Buildium::LeaseTransactionsApicreate_lease_auto_allocated_paymentPOST /v1/leases/{leaseId}/autoallocatedpaymentsCreate a payment (auto allocated)
Buildium::LeaseTransactionsApicreate_lease_charge_recurring_transactionPOST /v1/leases/{leaseId}/recurringchargesCreate a recurring charge
Buildium::LeaseTransactionsApicreate_lease_creditPOST /v1/leases/{leaseId}/creditsCreate a credit
Buildium::LeaseTransactionsApicreate_lease_credit_recurring_transactionPOST /v1/leases/{leaseId}/recurringcreditsCreate a recurring credit
Buildium::LeaseTransactionsApicreate_lease_ledger_chargePOST /v1/leases/{leaseId}/chargesCreate a charge
Buildium::LeaseTransactionsApicreate_lease_ledger_deposit_withholdingPOST /v1/leases/{leaseId}/applieddepositsCreate a deposit withholding
Buildium::LeaseTransactionsApicreate_lease_ledger_refundPOST /v1/leases/{leaseId}/refundsCreate a refund
Buildium::LeaseTransactionsApicreate_lease_recurring_paymentPOST /v1/leases/{leaseId}/recurringpaymentsCreate a recurring payment
Buildium::LeaseTransactionsApicreate_lease_reverse_paymentPOST /v1/leases/{leaseId}/reversepaymentsCreate a payment reversal
Buildium::LeaseTransactionsApicreate_paymentPOST /v1/leases/{leaseId}/paymentsCreate a payment
Buildium::LeaseTransactionsApiget_all_chargesGET /v1/leases/{leaseId}/chargesRetrieve all charges
Buildium::LeaseTransactionsApiget_charge_by_idGET /v1/leases/{leaseId}/charges/{chargeId}Retrieve a charge
Buildium::LeaseTransactionsApiget_lease_charge_recurring_transaction_by_idGET /v1/leases/{leaseId}/recurringcharges/{transactionId}Retrieve a recurring charge
Buildium::LeaseTransactionsApiget_lease_ledger_refund_by_idGET /v1/leases/{leaseId}/refunds/{refundId}Retrieve a refund
Buildium::LeaseTransactionsApiget_lease_ledger_transaction_by_idGET /v1/leases/{leaseId}/transactions/{transactionId}Retrieve a lease transaction
Buildium::LeaseTransactionsApiget_lease_ledgersGET /v1/leases/{leaseId}/transactionsRetrieve all lease transactions
Buildium::LeaseTransactionsApiget_lease_outstanding_balancesGET /v1/leases/outstandingbalancesRetrieve all outstanding balances
Buildium::LeaseTransactionsApiget_lease_recurring_credit_by_idGET /v1/leases/{leaseId}/recurringcredits/{transactionId}Retrieve a recurring credit
Buildium::LeaseTransactionsApiget_lease_recurring_transactionsGET /v1/leases/{leaseId}/recurringtransactionsRetrieve all recurring transactions
Buildium::LeaseTransactionsApiget_recurring_lease_payments_by_idGET /v1/leases/{leaseId}/recurringpayments/{paymentId}Retrieve a recurring payment
Buildium::LeaseTransactionsApiupdate_deposit_withholdingPUT /v1/leases/{leaseId}/applieddeposits/{depositId}Update a deposit withholding
Buildium::LeaseTransactionsApiupdate_lease_chargePUT /v1/leases/{leaseId}/charges/{chargeId}Update a charge
Buildium::LeaseTransactionsApiupdate_lease_ledger_paymentPUT /v1/leases/{leaseId}/payments/{paymentId}Update a payment
Buildium::LeasesApicreate_leasePOST /v1/leasesCreate a lease
Buildium::LeasesApicreate_lease_notePOST /v1/leases/{leaseId}/notesCreate a note
Buildium::LeasesApicreate_lease_renewalPOST /v1/leases/{leaseId}/renewalsCreate a lease renewal
Buildium::LeasesApicreate_move_out_dataPOST /v1/leases/{leaseId}/moveoutsCreate a move out
Buildium::LeasesApicreate_rent_schedulePOST /v1/leases/{leaseId}/rentCreate a rent schedule
Buildium::LeasesApiget_all_lease_renewalsGET /v1/leases/{leaseId}/renewalsRetrieve all renewals
Buildium::LeasesApiget_all_lease_renewals_for_all_propertiesGET /v1/leases/renewalsRetrieve all upcoming renewals
Buildium::LeasesApiget_lease_by_idGET /v1/leases/{leaseId}Retrieve a lease
Buildium::LeasesApiget_lease_epay_settings_by_idGET /v1/leases/{leaseId}/epaysettingsRetrieve ePay settings
Buildium::LeasesApiget_lease_move_out_data_by_tenant_idGET /v1/leases/{leaseId}/moveouts/{tenantId}Retrieve a move out
Buildium::LeasesApiget_lease_move_out_information_by_idGET /v1/leases/{leaseId}/moveoutsRetrieve all move outs
Buildium::LeasesApiget_lease_note_by_note_idGET /v1/leases/{leaseId}/notes/{noteId}Retrieve a note
Buildium::LeasesApiget_lease_notesGET /v1/leases/{leaseId}/notesRetrieve all notes
Buildium::LeasesApiget_lease_partial_payment_settingsGET /v1/leases/{leaseId}/partialpaymentsettingsRetrieve all partial payment settings for a lease
Buildium::LeasesApiget_lease_renewal_by_idGET /v1/leases/{leaseId}/renewals/{renewalId}Retrieve a renewal
Buildium::LeasesApiget_leasesGET /v1/leasesRetrieve all leases
Buildium::LeasesApiget_rentGET /v1/leases/{leaseId}/rentRetrieve all rent schedules
Buildium::LeasesApiget_rent_by_idGET /v1/leases/{leaseId}/rent/{rentId}Retrieve a rent schedule
Buildium::LeasesApiget_renters_insurance_policiesGET /v1/leases/{leaseId}/rentersinsuranceRetrieve all insurance policies
Buildium::LeasesApiget_renters_insurance_policy_by_idGET /v1/leases/{leaseId}/rentersinsurance/{policyId}Retrieve an insurance policy
Buildium::LeasesApipatch_lease_partial_payment_settingsPATCH /v1/leases/{leaseId}/partialpaymentsettingsUpdate partial payment settings for a lease
Buildium::LeasesApiundo_tenant_moveoutDELETE /v1/leases/{leaseId}/moveouts/{tenantId}Delete a move out
Buildium::LeasesApiupdate_leasePUT /v1/leases/{leaseId}Update a lease
Buildium::LeasesApiupdate_lease_epay_settingsPUT /v1/leases/{leaseId}/epaysettingsUpdate ePay settings
Buildium::LeasesApiupdate_lease_notePUT /v1/leases/{leaseId}/notes/{noteId}Update a note
Buildium::LeasesApiupdate_rent_schedulePUT /v1/leases/{leaseId}/rent/{rentId}Update a rent schedule
Buildium::ListingsApicreate_listing_contactPOST /v1/rentals/units/listingcontactsCreate a listing contact
Buildium::ListingsApidelist_unitDELETE /v1/rentals/units/{unitId}/listingDelete a listing
Buildium::ListingsApiget_all_listing_contactsGET /v1/rentals/units/listingcontactsRetrieve all listing contacts
Buildium::ListingsApiget_listing_contact_by_idGET /v1/rentals/units/listingcontacts/{listingContactId}Retrieve a listing contact
Buildium::ListingsApiget_listing_for_unit_asyncGET /v1/rentals/units/{unitId}/listingRetrieve a listing
Buildium::ListingsApiget_listings_asyncGET /v1/rentals/units/listingsRetrieve all listings
Buildium::ListingsApiupdate_listing_contactPUT /v1/rentals/units/listingcontacts/{listingContactId}Update a listing contact
Buildium::ListingsApiupsert_listings_asyncPUT /v1/rentals/units/{unitId}/listingCreate/Update a listing
Buildium::OwnershipAccountTransactionsApicreate_ownership_account_auto_allocated_paymentPOST /v1/associations/ownershipaccounts/{ownershipAccountId}/autoallocatedpaymentsCreate a payment (auto allocated)
Buildium::OwnershipAccountTransactionsApicreate_ownership_account_creditPOST /v1/associations/ownershipaccounts/{ownershipAccountId}/creditsCreate a credit
Buildium::OwnershipAccountTransactionsApicreate_ownership_account_credit_recurring_transactionPOST /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcreditsCreate a recurring credit
Buildium::OwnershipAccountTransactionsApicreate_ownership_account_deposit_withholdingPOST /v1/associations/ownershipaccounts/{ownershipAccountId}/applieddepositsCreate a deposit withholding
Buildium::OwnershipAccountTransactionsApicreate_ownership_account_ledger_chargePOST /v1/associations/ownershipaccounts/{ownershipAccountId}/chargesCreate a charge
Buildium::OwnershipAccountTransactionsApicreate_ownership_account_ledger_paymentPOST /v1/associations/ownershipaccounts/{ownershipAccountId}/paymentsCreate a payment
Buildium::OwnershipAccountTransactionsApicreate_ownership_account_recurring_paymentPOST /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringpaymentsCreate a recurring payment
Buildium::OwnershipAccountTransactionsApicreate_ownership_account_refundPOST /v1/associations/ownershipaccounts/{ownershipAccountId}/refundsCreate a refund
Buildium::OwnershipAccountTransactionsApicreate_ownership_accounts_charge_recurring_transactionPOST /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringchargesCreate a recurring charge
Buildium::OwnershipAccountTransactionsApiget_all_ownership_account_chargesGET /v1/associations/ownershipaccounts/{ownershipAccountId}/chargesRetrieve all charges
Buildium::OwnershipAccountTransactionsApiget_association_recurring_transactionGET /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringtransactionsRetrieve all recurring transactions
Buildium::OwnershipAccountTransactionsApiget_ownership_account_charge_by_idGET /v1/associations/ownershipaccounts/{ownershipAccountId}/charges/{chargeId}Retrieve a charge
Buildium::OwnershipAccountTransactionsApiget_ownership_account_ledgerGET /v1/associations/ownershipaccounts/{ownershipAccountId}/transactionsRetrieve all transactions
Buildium::OwnershipAccountTransactionsApiget_ownership_account_outstanding_balancesGET /v1/associations/ownershipaccounts/outstandingbalancesRetrieve all outstanding balances
Buildium::OwnershipAccountTransactionsApiget_ownership_account_recurring_credit_by_idGET /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcredits/{transactionId}Retrieve a recurring credit
Buildium::OwnershipAccountTransactionsApiget_ownership_account_refund_by_idGET /v1/associations/ownershipaccounts/{ownershipAccountId}/refunds/{refundId}Retrieve a refund
Buildium::OwnershipAccountTransactionsApiget_ownership_account_transaction_by_idGET /v1/associations/ownershipaccounts/{ownershipAccountId}/transactions/{transactionId}Retrieve a transaction
Buildium::OwnershipAccountTransactionsApiget_ownership_accounts_charge_recurring_transaction_by_idGET /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringcharges/{transactionId}Retrieve a recurring charge
Buildium::OwnershipAccountTransactionsApiget_recurring_ownership_account_payments_by_idGET /v1/associations/ownershipaccounts/{ownershipAccountId}/recurringpayments/{paymentId}Retrieve a recurring payment
Buildium::OwnershipAccountTransactionsApiupdate_ownership_account_chargePUT /v1/associations/ownershipaccounts/{ownershipAccountId}/charges/{chargeId}Update a charge
Buildium::OwnershipAccountTransactionsApiupdate_ownership_account_deposit_withholdingPUT /v1/associations/ownershipaccounts/{ownershipAccountId}/applieddeposits/{depositId}Update a deposit withholding
Buildium::OwnershipAccountTransactionsApiupdate_ownership_account_ledger_paymentPUT /v1/associations/ownershipaccounts/{ownershipAccountId}/payments/{paymentId}Update a payment
Buildium::OwnershipAccountsApicreate_association_ownership_accountPOST /v1/associations/ownershipaccountsCreate an ownership account
Buildium::OwnershipAccountsApicreate_association_ownership_account_notePOST /v1/associations/ownershipaccounts/{ownershipAccountId}/notesCreate a note
Buildium::OwnershipAccountsApiget_all_ownership_accountsGET /v1/associations/ownershipaccountsRetrieve all ownership accounts
Buildium::OwnershipAccountsApiget_association_ownership_account_note_by_note_idGET /v1/associations/ownershipaccounts/{ownershipAccountId}/notes/{noteId}Retrieve a note
Buildium::OwnershipAccountsApiget_association_ownership_account_notesGET /v1/associations/ownershipaccounts/{ownershipAccountId}/notesRetrieve all notes
Buildium::OwnershipAccountsApiget_ownership_account_by_idGET /v1/associations/ownershipaccounts/{ownershipAccountId}Retrieve an ownership account
Buildium::OwnershipAccountsApiget_ownership_account_partial_payment_settingsGET /v1/associations/ownershipaccounts/{ownershipAccountId}/partialpaymentsettingsRetrieve all partial payment settings for an ownership account
Buildium::OwnershipAccountsApipatch_ownership_account_partial_paymentPATCH /v1/associations/ownershipaccounts/{ownershipAccountId}/partialpaymentsettingsUpdate partial payment settings for an ownership account
Buildium::OwnershipAccountsApiupdate_association_ownership_accountPUT /v1/associations/ownershipaccounts/{ownershipAccountId}Update an ownership account
Buildium::OwnershipAccountsApiupdate_association_ownership_account_notePUT /v1/associations/ownershipaccounts/{ownershipAccountId}/notes/{noteId}Update a note
Buildium::PropertyGroupsApicreate_property_groupPOST /v1/propertygroupsCreate a property group
Buildium::PropertyGroupsApiget_property_group_by_idGET /v1/propertygroups/{propertyGroupId}Retrieve a property group
Buildium::PropertyGroupsApiget_property_groupsGET /v1/propertygroupsRetrieve all property groups
Buildium::PropertyGroupsApiupdate_property_groupPUT /v1/propertygroups/{propertyGroupId}Update a property group
Buildium::RentalAppliancesApicreate_rental_appliancePOST /v1/rentals/appliancesCreate an appliance
Buildium::RentalAppliancesApicreate_rental_appliance_service_historyPOST /v1/rentals/appliances/{applianceId}/servicehistoryCreate a service history
Buildium::RentalAppliancesApidelete_rental_appliancesDELETE /v1/rentals/appliances/{applianceId}Delete an appliance
Buildium::RentalAppliancesApiget_rental_appliance_by_idGET /v1/rentals/appliances/{applianceId}Retrieve an appliance
Buildium::RentalAppliancesApiget_rental_appliance_service_historyGET /v1/rentals/appliances/{applianceId}/servicehistoryRetrieve all service history
Buildium::RentalAppliancesApiget_rental_appliance_service_history_by_idGET /v1/rentals/appliances/{applianceId}/servicehistory/{serviceHistoryId}Retrieve a service history
Buildium::RentalAppliancesApiget_rental_appliancesGET /v1/rentals/appliancesRetrieve all appliances
Buildium::RentalAppliancesApiupdate_rental_appliancePUT /v1/rentals/appliances/{applianceId}Update an appliance
Buildium::RentalMeterReadingsApidelete_meter_reading_details_for_rentalDELETE /v1/rentals/{propertyId}/meterreadings/summaryDelete meter reading details for a given date
Buildium::RentalMeterReadingsApiget_meter_reading_details_for_rental_asyncGET /v1/rentals/{propertyId}/meterreadings/summaryRetrieve all meter reading details
Buildium::RentalMeterReadingsApiget_meter_readings_for_rentalGET /v1/rentals/{propertyId}/meterreadingsRetrieve all meter readings
Buildium::RentalMeterReadingsApiupsert_meter_reading_details_for_rental_asyncPUT /v1/rentals/{propertyId}/meterreadings/summaryCreate/Update meter reading details
Buildium::RentalOwnerRequestsApicreate_rental_owner_request_taskPOST /v1/tasks/rentalownerrequestsCreate a rental owner request
Buildium::RentalOwnerRequestsApiget_all_rental_owner_request_tasksGET /v1/tasks/rentalownerrequestsRetrieve all rental owner requests
Buildium::RentalOwnerRequestsApiget_rental_owner_request_task_by_idGET /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId}Retrieve a rental owner request
Buildium::RentalOwnerRequestsApiget_rental_owner_request_task_contribution_dataGET /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId}/contributiondataRetrieve rental owner contribution request
Buildium::RentalOwnerRequestsApiupdate_rental_owner_request_taskPUT /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId}Update a rental owner request
Buildium::RentalOwnerRequestsApiupdate_rental_owner_request_task_contribution_dataPUT /v1/tasks/rentalownerrequests/{rentalOwnerRequestTaskId}/contributiondataUpdate a rental owner contribution request
Buildium::RentalOwnersApicreate_rental_ownerPOST /v1/rentals/ownersCreate an owner
Buildium::RentalOwnersApicreate_rental_owner_notePOST /v1/rentals/owners/{rentalOwnerId}/notesCreate a note
Buildium::RentalOwnersApiget_rental_owner_by_idGET /v1/rentals/owners/{rentalOwnerId}Retrieve an owner
Buildium::RentalOwnersApiget_rental_owner_note_by_idGET /v1/rentals/owners/{rentalOwnerId}/notes/{noteId}Retrieve a note
Buildium::RentalOwnersApiget_rental_owner_notesGET /v1/rentals/owners/{rentalOwnerId}/notesRetrieves all notes
Buildium::RentalOwnersApiget_rental_ownersGET /v1/rentals/ownersRetrieve all owners
Buildium::RentalOwnersApiupdate_rental_ownerPUT /v1/rentals/owners/{rentalOwnerId}Update an owner
Buildium::RentalOwnersApiupdate_rental_owner_notePUT /v1/rentals/owners/{rentalOwnerId}/notes/{noteId}Update a note
Buildium::RentalPropertiesApicreate_rental_image_upload_file_request_asyncPOST /v1/rentals/{propertyId}/images/uploadrequestsUpload a rental image
Buildium::RentalPropertiesApicreate_rental_propertyPOST /v1/rentalsCreate a property
Buildium::RentalPropertiesApicreate_rental_property_notePOST /v1/rentals/{propertyId}/notesCreate a note
Buildium::RentalPropertiesApicreate_rental_unitPOST /v1/rentals/unitsCreate a unit
Buildium::RentalPropertiesApicreate_video_link_requestPOST /v1/rentals/{propertyId}/images/videolinkrequestsCreate an image for a rental using a video link
Buildium::RentalPropertiesApidelete_rental_imageDELETE /v1/rentals/{propertyId}/images/{imageId}Delete a property image
Buildium::RentalPropertiesApiget_all_rental_unitsGET /v1/rentals/unitsRetrieve all units
Buildium::RentalPropertiesApiget_all_rentalsGET /v1/rentalsRetrieve all properties
Buildium::RentalPropertiesApiget_e_pay_settings_for_rental_propertyGET /v1/rentals/{propertyId}/epaysettingsRetrieve ePay settings
Buildium::RentalPropertiesApiget_features_by_rental_property_idGET /v1/rentals/{propertyId}/amenitiesRetrieve all amenities
Buildium::RentalPropertiesApiget_rental_by_idGET /v1/rentals/{propertyId}Retrieve a property
Buildium::RentalPropertiesApiget_rental_image_by_idGET /v1/rentals/{propertyId}/images/{imageId}Retrieve a property image
Buildium::RentalPropertiesApiget_rental_image_download_url_by_idPOST /v1/rentals/{propertyId}/images/{imageId}/downloadrequestsDownload a property image
Buildium::RentalPropertiesApiget_rental_imagesGET /v1/rentals/{propertyId}/imagesRetrieve all property images
Buildium::RentalPropertiesApiget_rental_note_by_note_idGET /v1/rentals/{propertyId}/notes/{noteId}Retrieve a note
Buildium::RentalPropertiesApiget_rental_notesGET /v1/rentals/{propertyId}/notesRetrieve all notes
Buildium::RentalPropertiesApiget_rental_preferred_vendorsGET /v1/rentals/{propertyId}/vendorsRetrieve all preferred vendors
Buildium::RentalPropertiesApiget_rental_unit_by_idGET /v1/rentals/units/{unitId}Retrieve a unit
Buildium::RentalPropertiesApiinactivate_rental_propertyPOST /v1/rentals/{propertyId}/inactivationrequestInactivate a property
Buildium::RentalPropertiesApireactivate_rental_propertyPOST /v1/rentals/{propertyId}/reactivationrequestReactivate a property
Buildium::RentalPropertiesApireorder_rental_imagesPUT /v1/rentals/{propertyId}/images/orderUpdate property image order
Buildium::RentalPropertiesApiupdate_e_pay_settings_for_rentalPUT /v1/rentals/{propertyId}/epaysettingsUpdate ePay settings
Buildium::RentalPropertiesApiupdate_rental_featuresPUT /v1/rentals/{propertyId}/amenitiesUpdate amenities
Buildium::RentalPropertiesApiupdate_rental_imagePUT /v1/rentals/{propertyId}/images/{imageId}Update a property image
Buildium::RentalPropertiesApiupdate_rental_preferred_vendorsPUT /v1/rentals/{propertyId}/vendorsUpdate preferred vendors
Buildium::RentalPropertiesApiupdate_rental_propertyPUT /v1/rentals/{propertyId}Update a property
Buildium::RentalPropertiesApiupdate_rental_property_notePUT /v1/rentals/{propertyId}/notes/{noteId}Update a note
Buildium::RentalPropertiesApiupdate_rental_unitPUT /v1/rentals/units/{unitId}Update a unit
Buildium::RentalTenantsApicreate_rental_tenantPOST /v1/leases/tenantsCreate a tenant
Buildium::RentalTenantsApicreate_tenant_notePOST /v1/leases/tenants/{tenantId}/notesCreate a note
Buildium::RentalTenantsApiget_all_tenant_notesGET /v1/leases/tenants/{tenantId}/notesRetrieve all notes
Buildium::RentalTenantsApiget_all_tenantsGET /v1/leases/tenantsRetrieve all tenants
Buildium::RentalTenantsApiget_tenant_by_idGET /v1/leases/tenants/{tenantId}Retrieve a tenant
Buildium::RentalTenantsApiget_tenant_note_by_idGET /v1/leases/tenants/{tenantId}/notes/{noteId}Retrieve a note
Buildium::RentalTenantsApiupdate_lease_tenant_notePUT /v1/leases/tenants/{tenantId}/notes/{noteId}Update a note
Buildium::RentalTenantsApiupdate_rental_tenantPUT /v1/leases/tenants/{tenantId}Update a tenant
Buildium::RentalUnitsApicreate_rental_unit_image_upload_file_request_asyncPOST /v1/rentals/units/{unitId}/images/uploadrequestsUpload a unit image
Buildium::RentalUnitsApicreate_rental_unit_notePOST /v1/rentals/units/{unitId}/notesCreate a note
Buildium::RentalUnitsApicreate_unit_video_link_requestPOST /v1/rentals/units/{unitId}/images/videolinkrequestsCreate an image for a unit using a video link
Buildium::RentalUnitsApidelete_rental_unit_imageDELETE /v1/rentals/units/{unitId}/images/{imageId}Delete a unit image
Buildium::RentalUnitsApiget_features_for_rental_unit_by_idGET /v1/rentals/units/{unitId}/amenitiesRetrieve all amenities
Buildium::RentalUnitsApiget_rental_unit_image_by_idGET /v1/rentals/units/{unitId}/images/{imageId}Retrieve a unit image
Buildium::RentalUnitsApiget_rental_unit_image_download_url_by_idPOST /v1/rentals/units/{unitId}/images/{imageId}/downloadrequestsDownload a unit image
Buildium::RentalUnitsApiget_rental_unit_imagesGET /v1/rentals/units/{unitId}/imagesRetrieve all unit images
Buildium::RentalUnitsApiget_rental_unit_note_by_note_idGET /v1/rentals/units/{unitId}/notes/{noteId}Retrieve a note
Buildium::RentalUnitsApiget_rental_unit_notesGET /v1/rentals/units/{unitId}/notesRetrieve all notes
Buildium::RentalUnitsApireorder_rental_unit_imagesPUT /v1/rentals/units/{unitId}/images/orderUpdate unit image order
Buildium::RentalUnitsApiupdate_note_for_rental_unitPUT /v1/rentals/units/{unitId}/notes/{noteId}Update a note
Buildium::RentalUnitsApiupdate_rental_unit_featuresPUT /v1/rentals/units/{unitId}/amenitiesUpdate amenities
Buildium::RentalUnitsApiupdate_rental_unit_imagePUT /v1/rentals/units/{unitId}/images/{imageId}Update a unit image
Buildium::ResidentCenterApiget_resident_center_usersGET /v1/residentCenterUsersRetrieve all resident center users
Buildium::ResidentCenterApiget_retail_cash_userGET /v1/retailcashusers/{userId}/{unitAgreementId}Retrieve a retail cash user
Buildium::ResidentCenterApiget_retail_cash_usersGET /v1/retailcashusersRetrieve all retail cash users
Buildium::ResidentCenterApiupdate_retail_cash_userPUT /v1/retailcashusers/{userId}/{unitAgreementId}Update a retail cash user
Buildium::ResidentRequestsApicreate_resourcePOST /v1/tasks/residentrequestsCreate a resident request
Buildium::ResidentRequestsApiget_resident_request_taskGET /v1/tasks/residentrequests/{residentRequestTaskId}Retrieve a resident request
Buildium::ResidentRequestsApiget_resident_request_tasksGET /v1/tasks/residentrequestsRetrieve all resident requests
Buildium::ResidentRequestsApiupdate_resourcePUT /v1/tasks/residentrequests/{residentRequestTaskId}Update a resident request
Buildium::TasksApicreate_task_categoryPOST /v1/tasks/categoriesCreate a task category
Buildium::TasksApidelete_task_history_fileDELETE /v1/tasks/{taskId}/history/{taskHistoryId}/files/{fileId}Delete task history file
Buildium::TasksApiget_all_task_categoriesGET /v1/tasks/categoriesRetrieve all task categories
Buildium::TasksApiget_all_task_history_filesGET /v1/tasks/{taskId}/history/{taskHistoryId}/filesRetrieve all task history files
Buildium::TasksApiget_all_tasksGET /v1/tasksRetrieve all tasks
Buildium::TasksApiget_file_download_requestPOST /v1/tasks/{taskId}/history/{taskHistoryId}/files/{fileId}/downloadrequestDownload a task history file
Buildium::TasksApiget_task_by_idGET /v1/tasks/{taskId}Retrieve a task
Buildium::TasksApiget_task_category_by_idGET /v1/tasks/categories/{taskCategoryId}Retrieve a task category
Buildium::TasksApiget_task_historiesGET /v1/tasks/{taskId}/historyRetrieve all task history
Buildium::TasksApiget_task_history_by_idGET /v1/tasks/{taskId}/history/{taskHistoryId}Retrieve a task history
Buildium::TasksApiget_task_history_file_by_idGET /v1/tasks/{taskId}/history/{taskHistoryId}/files/{fileId}Retrieve a task history file
Buildium::TasksApiupdate_task_categoryPUT /v1/tasks/categories/{taskCategoryId}Update a task category
Buildium::TasksApiupdate_task_historyPUT /v1/tasks/{taskId}/history/{taskHistoryId}Update a task history
Buildium::TasksApiupload_task_history_file_request_asyncPOST /v1/tasks/{taskId}/history/{taskHistoryId}/files/uploadrequestsUpload a task history file
Buildium::ToDoRequestsApicreate_to_do_taskPOST /v1/tasks/todorequestsCreate a to do request
Buildium::ToDoRequestsApiget_to_do_task_by_idGET /v1/tasks/todorequests/{toDoTaskId}Retrieve a to do request
Buildium::ToDoRequestsApiget_to_do_tasksGET /v1/tasks/todorequestsRetrieve all to do requests
Buildium::ToDoRequestsApiupdate_to_do_taskPUT /v1/tasks/todorequests/{toDoTaskId}Update a to do request
Buildium::VendorsApicreate_vendorPOST /v1/vendorsCreate a vendor
Buildium::VendorsApicreate_vendor_categoryPOST /v1/vendors/categoriesCreate a vendor category
Buildium::VendorsApicreate_vendor_creditPOST /v1/vendors/{vendorId}/creditsCreate a credit
Buildium::VendorsApicreate_vendor_notePOST /v1/vendors/{vendorId}/notesCreate a note
Buildium::VendorsApicreate_vendor_refundPOST /v1/vendors/{vendorId}/refundsCreate a refund
Buildium::VendorsApiget_all_vendor_categoriesGET /v1/vendors/categoriesRetrieve all vendor categories
Buildium::VendorsApiget_all_vendor_transactionsGET /v1/vendors/{vendorId}/transactionsRetrieve all transactions
Buildium::VendorsApiget_all_vendorsGET /v1/vendorsRetrieve all vendors
Buildium::VendorsApiget_vendor_by_idGET /v1/vendors/{vendorId}Retrieve a vendor
Buildium::VendorsApiget_vendor_category_by_idGET /v1/vendors/categories/{vendorCategoryId}Retrieve a vendor category
Buildium::VendorsApiget_vendor_creditGET /v1/vendors/{vendorId}/credits/{vendorCreditId}Retrieve a credit
Buildium::VendorsApiget_vendor_note_by_note_idGET /v1/vendors/{vendorId}/notes/{noteId}Retrieve a note
Buildium::VendorsApiget_vendor_notesGET /v1/vendors/{vendorId}/notesRetrieve all notes
Buildium::VendorsApiget_vendor_refundGET /v1/vendors/{vendorId}/refunds/{vendorRefundId}Retrieve a refund
Buildium::VendorsApiupdate_vendorPUT /v1/vendors/{vendorId}Update a vendor
Buildium::VendorsApiupdate_vendor_categoryPUT /v1/vendors/categories/{vendorCategoryId}Update a vendor category
Buildium::VendorsApiupdate_vendor_notePUT /v1/vendors/{vendorId}/notes/{noteId}Update a note
Buildium::WorkOrdersApicreate_work_orderPOST /v1/workordersCreate a work order
Buildium::WorkOrdersApiget_all_work_ordersGET /v1/workordersRetrieve all work orders
Buildium::WorkOrdersApiget_work_order_by_idGET /v1/workorders/{workOrderId}Retrieve a work order
Buildium::WorkOrdersApiupdate_work_orderPUT /v1/workorders/{workOrderId}Update a work order

Documentation for Models

Documentation for Authorization

clientId

  • Type: API key
  • API key parameter name: x-buildium-client-id
  • Location: HTTP header

clientSecret

  • Type: API key
  • API key parameter name: x-buildium-client-secret
  • Location: HTTP header

FAQs

Package last updated on 16 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc