Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.69 KB

invoice-accepted-payment-methods.md

File metadata and controls

29 lines (20 loc) · 1.69 KB

Invoice Accepted Payment Methods

The payment methods that customers can use to pay an invoice on the Square-hosted invoice payment page.

Structure

InvoiceAcceptedPaymentMethods

Fields

Name Type Tags Description
card boolean | undefined Optional Indicates whether credit card or debit card payments are accepted. The default value is false.
squareGiftCard boolean | undefined Optional Indicates whether Square gift card payments are accepted. The default value is false.
bankAccount boolean | undefined Optional Indicates whether bank transfer payments are accepted. The default value is false.

This option is allowed only for invoices that have a single payment request of the BALANCE type.
buyNowPayLater boolean | undefined Optional Indicates whether Afterpay (also known as Clearpay) payments are accepted. The default value is false.

This option is allowed only for invoices that have a single payment request of the BALANCE type. This payment method is
supported if the seller account accepts Afterpay payments and the seller location is in a country where Afterpay
invoice payments are supported. As a best practice, consider enabling an additional payment method when allowing
buy_now_pay_later payments. For more information, including detailed requirements and processing limits, see
Buy Now Pay Later payments with Afterpay.

Example (as JSON)

{
  "card": null,
  "square_gift_card": null,
  "bank_account": null,
  "buy_now_pay_later": null
}