House Accounts

With house accounts, a seller can allow a customer to obtain products and services without having to pay for them immediately. The seller establishes a spending limit for the account and the customer can make purchases within that limit. The seller can see a running balance of the customer's house account and send an invoice to collect payment at a later time.

House accounts are a great way for businesses to build loyalty with their customers and encourage repeat business. For example, consider a customer who enjoys lunch at a particular restaurant every weekday. The restaurant can set up a house account, where the customer agrees to pay the total amount due by the end of each month. The customer can then simply come in and eat lunch, while accruing charges to their house account and receiving an invoice at the end of the month.

You can create and manage house accounts on Square payment hardware and mobile devices and from the following Square products:

For more information, see Create and Charge Square House Accounts.

Link to section

Requirements and limitations

  • Whenever a house account has a non-zero balance, the customer owes money to the seller. This is only resolved when the customer pays what they owe, resetting the account balance to zero.

  • Orders that are charged to a house account during checkout are considered sales in the Square Point of Sale, Reporting and Transactions applets.

  • To prevent double counting, repayments of house account balances are excluded from the Reporting and Transactions applets.

  • In the Seller Dashboard, sellers can use the House Accounts applet to view house accounts that have outstanding balances. They can also use the Invoices applet to view invoices that remain unpaid.

Link to section

Viewing house account charges

You can use the Payments API to identify and track charges made to a house account. Payment objects that are associated with a house account have the following fields set:

  • source_type - Set to SQUARE_ACCOUNT.
  • square_account_details (SquareAccountDetails) - Provides additional details about the payment. These details are only populated if the payment's source_type is SQUARE_ACCOUNT.

The following response fragment, from a GetPayment request, shows a purchase charged to a house account:

Link to section

Viewing items charged to a house account

You can use the Orders API to identify the items charged to a house account. In an Order object, the tenders array contains the payment activity for the order. If a Tender object in the array is associated with a house account, the following fields set:

  • type - Set to SQUARE_ACCOUNT.
  • square_account_details (TenderSquareAccountDetails) - Provides additional details about the tender. These details are only populated if the tender's type is SQUARE_ACCOUNT.

The following response fragment, from a RetrieveOrder request, shows an order that has a tender associated with a house account: