Terminal API Overview

Use the Terminal API to connect a custom Point of Sale (POS) application with a Square Terminal.

The Terminal API lets developers integrate Square in-person payments so that your custom POS application can take full advantage of Square Terminal and its features. Square Terminal enables in-person payments with card chip and NFC payments, addresses EMV certification requirements, and ensures PCI compliance.

A graphic showing a Square Terminal device.

The Terminal API integrates with a POS application to send and receive API calls. Depending on your seller's use case, you might need to integrate your POS application with the Reader SDK and connect to a Square Reader or Square Stand.

Link to section

How Square Terminal and POS application integrate

The integration works with a checkout flow as follows:

  1. Pair a Square Terminal and a POS application using the Devices API. Follow the steps in this guide to complete the pairing: POS Application Integration with the Terminal API. Return to this page when you've successfully paired the Square Terminal and the POS application.

  2. Send requests for payment checkouts with the Terminal API. Learn how the checkout process works in the next section.

Link to section

Process a payment with a Square Terminal

A POS application sends a request to check out a buyer on a paired Square Terminal by using the Terminal API. The Terminal checkout request goes to Square, which forwards it to the paired Square Terminal. The request carries the total amount to collect and the expected screen behavior of the Square Terminal payment.

Use a Terminal API checkout request to set Square Terminal behavior per checkout request. Customizable behaviors include:

  • Skipping the receipt screen.
  • Showing a separate tip input screen before getting a buyer's signature.
  • Allowing custom tip amounts.
  • Skipping the signature screen.

The Terminal API lets a POS application set payment completion options per checkout.

When the buyer completes the checkout on the Square Terminal, the POS application can be notified by a Square webhook. If the POS application isn't listening for webhook notifications, it can get the checkout result using the Terminal API.

A POS application can get a history of checkout requests and results filtered by Terminal device ID, time range, and checkout status.

Important

  • Checkouts in the COMPLETED or CANCELED state are deleted after 30 days. The Payment object serves as your permanent record.

  • Square Terminals don't support connecting to external printers when the Square Terminal is paired.

To get started with sending Terminal checkout requests, see Take Payments with the Terminal API.

Link to section

Supported payment types

The Terminal API supports payment cards and NFC payments such as Apple Pay and Google Pay. Payment cards include Square gift cards, credit cards, debit cards, and prepaid debit cards. In Japan, PayPay QR code and e-money card payments are also accepted. For more information about payment card support by region, see Card present for in-person payment.

The Terminal API doesn't support splitting a checkout into multiple payments for a single checkout request. Instead, you must use the POS application to split the payment. You can also create a partial payment checkout request with a gift card. If the gift card doesn't cover the full payment amount, you can create a second checkout request to pay the remaining balance.

Square Terminal doesn't support cash payments. Instead, use the Payments API to take the cash payment and record the payment using CreatePayment. For more information, see Take Cash Payments.

Link to section

Refund Square Terminal Interac payments

For Canadian sellers who want to refund payments on Interac cards, use the Terminal API to request an in-person refund on a Square Terminal. To learn more, see Refund Interac Payments.

Did you know?

Refunds for most Terminal payments use the Refunds API. Terminal API refunds should only be used when the payment card requires it. The Payment record includes a true value in the refund_requires_card_presence field to identify when the Terminal API refund is to be used.

Link to section

Terminal actions

The Terminal API provides additional ways for a Square Terminal and your POS application to interact, beyond accepting payments and refunds. These interactions are known as Terminal actions, which allow you to build non-payment related workflows for the seller such as saving a card on file or checking the status of a Square Terminal.

Important

Terminal actions are currently in Beta.

For more information, see Advanced Square Terminal Features.

Link to section

Listen for Terminal API webhooks

A webhook is a subscription that notifies you when a Square event occurs. For more information about using webhooks, see Square Webhooks Overview.

The Terminal API uses the following webhook events:

EventPermissionDescription
terminal.checkout.createdPAYMENTS_READA TerminalCheckout request was created.
terminal.checkout.updatedPAYMENTS_READA TerminalCheckout status was changed.
terminal.refund.createdPAYMENTS_READA TerminalRefund request was created.
terminal.refund.updatedPAYMENTS_READA TerminalRefund status was changed.
terminal.action.createdPAYMENTS_READA TerminalAction request was created.
terminal.action.updatedPAYMENTS_READA TerminalAction status was updated.

For a complete list of webhook events, see V2 Webhook Events Reference.

Your POS application should monitor the state of any Terminal checkout requests by subscribing to the Terminal API webhook events.

Link to section

See also