Accept E-Money Payments in Japan

Important

E-money payments are supported only in Japan. If you're developing a Point of Sale API integration for other regions, the content of this topic doesn't apply.

Link to section

Accept e-money payments

The Point of Sale API supports accepting electronic money (e-money) payments in Japan using the Square Point of Sale application and Square Reader. E-money compatible payment card brands include transportation group cards (such as Suica and PASMO), iD, and QUICPay.

To accept e-money payments, sellers must complete a short application process in the Seller Dashboard. When approved, a seller using your application sees the e-money option when your application launches Square Point of Sale using the Point of Sale API.

If a seller is approved to accept e-money payments, the e-money option appears if your application supports the CARD tender type.

A graphic showing the Point of Sale application running on a device in Japan and showing a localized payment page.

Link to section

Add code to initiate an electronic payment from your application

Add code that creates a new charge request and uses it to initiate a transaction in the Point of Sale application. The following function uses ChargeRequest.Builder to create a charge for ¥1 JPY and restrict the tender type to CARD. It then uses that request to create a ChargeRequest and initiate the transaction with an Intent object.

Create a new charge request as shown:

Note

The AlertDialogHelper object that is used in this code block is an example of a helper class instance and isn't part of the Point of Sale SDK.

Link to section

Add code to initiate a transaction from your mobile web application

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.

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

<a href="intent:#Intent; action=com.squareup.pos.action.CHARGE; package=com.squareup; S.browser_fallback_url=https://my.website.com/index.html; S.com.squareup.pos.WEB_CALLBACK_URI=https://my.website.com/index.html; S.com.squareup.pos.CLIENT_ID=sq0ids-yourClientId; S.com.squareup.pos.API_VERSION=v2.0; i.com.squareup.pos.TOTAL_AMOUNT=100; S.com.squareup.pos.CURRENCY_CODE=JPY; S.com.squareup.pos.TENDER_TYPES=com.squareup.pos.TENDER_CARD; end">Start Transaction</a>

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.

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

    // The URL where the Point of Sale app will send the transaction results. var callbackUrl = "{YOUR CALLBACK URL}"; // Your application ID var applicationId = "{YOUR APPLICATION ID}"; // The total and currency code should come from your transaction flow. // For now, we are hardcoding them. var transactionTotal = "{TRANSACTION TOTAL}"; var currencyCode = "JPY"; // The version of the Point of Sale SDK that you are using. var sdkVersion = "v2.0";
  3. Add code to build the request URL. For a detailed list of all possible URL parameters, see Mobile Web Technical Reference.

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

    <head> <!-- Loads callback javascript --> <script type="text/javascript" src="/open_pos.js"></script> </head>
  5. Add a button to your mobile web application that runs open-POS.js.

    <button onclick="openUrl()"> Start Transaction </button>```

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:

square-commerce-v1://payment/create?data={REPLACE ME}
  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.