Open the Square Point of Sale application from a custom mobile web application to process in-person payments using Square hardware.
Point of Sale API

Build on Mobile Web

Open the Square Point of Sale application from a custom mobile web application to process in-person payments using Square hardware.

This topic makes the following assumptions:

  • You've read the introductory review of this API.

  • You're familiar with basic web development. If you're new to web development, you should read Getting started with the Web by Mozilla.org before continuing.

  • You can create and run websites on localhost or a development server. If you're new to testing web pages locally, you should read Testing for supported countries before continuing.

  • You're familiar with HTTP and JSON.

The example code in this topic assumes the following:

  • You're building a mobile web application for point-of-sale transactions. If you're building a native mobile application, see Build on Android or Build on iOS.

  • The mobile web application uses JavaScript and HTML.

Install the latest version of the Square Point of Sale application from the Google Play Store (Android) or the Apple App Store (iOS).

You need to go into the Developer Dashboard and set the callback URL in the application. Your callback URL is where the Point of Sale API sends notifications and payment information. For example:

Note that /path/to/your/callback should be the path to the code that processes notifications and transaction information received from the Square Point of Sale application.

To register your callback URL:

  1. In the Developer Dashboard, choose your application, and then choose Point of Sale API in the left pane.

  2. In the Web section, enter your Web Callback URL.

  3. Choose Save.

Mobile web transactions are initiated by choosing a link to the Square Point of Sale application. Because the request URL includes details about the transaction, you should build the URL dynamically instead of hardcoding it. The link URL includes the transaction information as parameters and is formatted differently for Android and iOS applications.

Square Point of Sale application request URLs for Android are formatted as intent requests. For example:

Android requires URLs to be wrapped with Android start and end tokens when they contain key-value pairs delimited with semicolons. The Android start and end tokens are intent:#Intent; and end.

To build your request URL:

  1. Create a JavaScript file called open_pos.js.

  1. Add code to define some useful constants, configure your mobile web application, and set the transaction total.

  2. Add code to build the request URL. For a detailed list of all possible URL parameters, see Mobile Web Technical Reference.

  3. Add the following script tag to your HTML head to load your open_pos.js file:

  4. Add a button to your mobile web application that runs open-POS.js.

To initiate a Square Point of Sale transaction from your website, call the Square Point of Sale application with a URL using the following format:

  1. Add code to create a percent-encoded JSON object that contains the information that the Square Point of Sale application needs to process the transaction request.

    Did you know?

    Information in the notes field is saved in the Seller Dashboard and printed on receipts.

When the transaction completes and the device reactivates the mobile web application, the Square Point of Sale application sends a POST request to your mobile web application. The POST parameters provide information about whether the associated transaction succeeded or failed along with its accompanying metadata.

You need to add code to the callback file that processes the result:

  1. Declare your parameters.

  2. Process the result from Square.

  3. Print the result to the screen.

You add code to your callback file to process the response from the Square Point of Sale application. If you don't already have a callback file, you can make a file called callback.html and paste it in the following template:

Make a file called callback.js. This is where you put your JavaScript code that handles the response. In your callback.js file, declare the possible parameter keys that the Square Point of Sale application might return to your application.

For Android devices, you need to declare the following variables:

For iOS devices, you need to declare the following variables:

The Square Point of Sale application packages the transaction details differently for iOS and Android devices.

Square Point of Sale applications installed on Android devices send the transaction results back as parameters in a URL.

Add a function called getUrlParams that grabs the URL parameters and puts them in an array.

Square Point of Sale applications installed on IOS devices send back a URL with a single parameter called data, which contains the transaction details in a JSON block.

Depending on the result of the transaction, the data object includes some or all of the following fields.

If an error occurs during a Point of Sale API transaction, the JSON data object returns the error_code field.

  1. Add functions that handle the success and error responses. If it's successful, handleSuccess() saves the parameters to resultString. If it's an error, handleError() saves the error code and description to a resultString.

    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    // Makes a result string for success situation
    function handleSuccess(transactionInfo){
      var resultString ="";
    
     if (clientTransactionId in transactionInfo) {
        resultString += "Client Transaction ID: " + transactionInfo[clientTransactionId] + "<br>";
      }
      if (transactionId in transactionInfo) {
        resultString += "Transaction ID: " + transactionInfo[transactionId] + "      <br>";
      }
       else {
        resultString += "Transaction ID: NO CARD USED<br>";
      }
      return resultString;
    }
    
    // Makes an error string for error situation
    function handleError(transactionInfo){
      var resultString ="";
    
      if (errorField in transactionInfo) {
        resultString += "Client Transaction ID: " + transactionInfo[clientTransactionId] + "<br>";
      }
      if (transactionId in transactionInfo) {
        resultString += "Transaction ID: " + transactionInfo[transactionId] + "     <br>";
      }
       else {
        resultString += "Transaction ID: PROCESSED OFFLINE OR NO CARD USED<br>";
      }
      return resultString;
    }
    
  2. Add a function that grabs the URL returned by Square and grabs the URL parameters using getUrlParams(). It then uses an if statement to call the correct handler and prints the resultString.

    For more information about Android and iOS error codes, see Mobile Web Technical Reference.

    Did you know?

    Your application should keep track of whether a Point of Sale API request has been issued and whether a callback has been received. Because of the constraints of application-switching APIs, sellers can leave Square Point of Sale during an API request and return to your application. It's your responsibility to direct them to return to Square and finish the transaction.

  1. Initialize the Point of Sale application before testing your first transaction:

    1. Sign in to the Square Point of Sale application with the business location and employee you want to accept payments.

    2. If you're using the Square Contactless and Chip Reader, connect it to the Square Point of Sale application. You get an error if you call the Point of Sale API without initializing the Point of Sale application first.

  2. Open your web application in an emulator or on your mobile device, and then choose Start transaction to open the Point of Sale application.

  3. To test the cancellation callback, cancel the transaction in the Point of Sale application.

  4. To test the success callback, complete a cash payment, and then choose the checkmark to indicate you're done.

You cannot install the Square Point of Sale application on a virtual Xcode machine. For this reason, you need to test your code on a real iOS device. You can test your code that processes the data by creating a test response URL instead of receiving it from Square.

  1. Add a test URL to your callback code.

  2. Comment out the line in printResponse() that gets the response URL from Square.