Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 2.03 KB

apple-pay.md

File metadata and controls

61 lines (43 loc) · 2.03 KB

Apple Pay

ApplePayApi applePayApi = client.getApplePayApi();

Class Name

ApplePayApi

Register Domain

Activates a domain for use with Apple Pay on the Web and Square. A validation is performed on this domain by Apple to ensure that it is properly set up as an Apple Pay enabled domain.

This endpoint provides an easy way for platform developers to bulk activate Apple Pay on the Web with Square for merchants using their platform.

Note: You will need to host a valid domain verification file on your domain to support Apple Pay. The current version of this file is always available at https://app.squareup.com/digital-wallets/apple-pay/apple-developer-merchantid-domain-association, and should be hosted at .well_known/apple-developer-merchantid-domain-association on your domain. This file is subject to change; we strongly recommend checking for updates regularly and avoiding long-lived caches that might not keep in sync with the correct file version.

To learn more about the Web Payments SDK and how to add Apple Pay, see Take an Apple Pay Payment.

CompletableFuture<RegisterDomainResponse> registerDomainAsync(
    final RegisterDomainRequest body)

Parameters

Parameter Type Tags Description
body RegisterDomainRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

RegisterDomainResponse

Example Usage

RegisterDomainRequest body = new RegisterDomainRequest.Builder(
    "example.com"
)
.build();

applePayApi.registerDomainAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});