Web/API/PaymentAddress

From Get docs

Secure contextThis feature is available only in secure contexts (HTTPS), in some or all supporting browsers.


The PaymentAddress interface of the Payment Request API is used to store shipping or payment address information.

It may be useful to refer to the Universal Postal Union web site's Addressing S42 standard materials, which provide information about international standards for postal addresses.

Properties

PaymentAddress.addressLine Read only
An array of DOMString objects providing each line of the address not included among the other properties. The exact size and content varies by country or location and can include, for example, a street name, house number, apartment number, rural delivery route, descriptive instructions, or post office box number.
PaymentAddress.country Read only  
A DOMString specifying the country in which the address is located, using the ISO-3166-1 alpha-2 standard. The string is always given in its canonical upper-case form. Some examples of valid country values: "US", "GB", "CN", or "JP".
PaymentAddress.city Read only
DOMString which contains the city or town portion of the address.
PaymentAddress.dependentLocality Read only
A DOMString giving the dependent locality or sublocality within a city, for example, a neighborhood, borough, district, or UK dependent locality.
PaymentAddress.organization Read only
DOMString specifying the name of the organization, firm, company, or institution at the payment address.
PaymentAddress.phone Read only
DOMString specifying the telephone number of the recipient or contact person.
PaymentAddress.postalCode Read only
DOMString specifying a code used by a jurisdiction for mail routing, for example, the ZIP code in the United States or the PIN code in India.
PaymentAddress.recipient Read only
DOMString giving the name of the recipient, purchaser, or contact person at the payment address.
PaymentAddress.region Read only
DOMString containing the top level administrative subdivision of the country, for example a state, province, oblast, or prefecture.
PaymentAddress.regionCode Read only
DOMString specifying the region of the address, represented as a "code element" of an ISO3166-2 country subdivision name (e.g. "QLD" for Queensland, Australia, "CA" for California, and so on).
PaymentAddress.sortingCode Read only
DOMString providing a postal sorting code such as is used in France.

Note: Properties for which values were not specified contain empty strings.


Obsolete properties

The following properties are obsolete and should no longer be used, but may still be present in some browser versions.

PaymentAddress.languageCode Read only '
A DOMString indicating the language code of the address. This identifies the language in which the address is given, and is intended to aid in localization of the display of the address.

Methods

PaymentAddress.toJSON()
A standard serializer that returns a JSON representation of the PaymentAddress object's properties.

Examples

In the following example, the PaymentRequest() constructor is used to create a new payment request, which takes three objects as parameters — one containing details of the payment methods that can be used for the payment, one containing details of the actual order (such as items bought and shipping options), and an optional object containing further options.

The first of these three (supportedInstruments in the example below) contains a data property that has to conform to the structure defined by the BasicCardRequest dictionary.

const supportedInstruments = [
  {
    supportedMethods: "basic-card",
  },
];

const details = {
  total: { label: "Donation", amount: { currency: "USD", value: "65.00" } },
  displayItems: [
    {
      label: "Original donation amount",
      amount: { currency: "USD", value: "65.00" },
    },
  ],
  shippingOptions: [
    {
      id: "standard",
      label: "Standard shipping",
      amount: { currency: "USD", value: "0.00" },
      selected: true,
    },
  ],
};

const options = { requestShipping: true };

async function doPaymentRequest() {
  const request = new PaymentRequest(supportedInstruments, details, options);
  // Add event listeners here.
  // Call show() to trigger the browser's payment flow.
  const response = await request.show();
  // Process payment.
  const json = response.toJSON();
  const httpResponse = await fetch("/pay/", { method: "POST", body: json });
  const result = httpResponse.ok ? "success" : "failure";

  await response.complete(result);
}
doPaymentRequest();

Once the payment flow has been triggered using PaymentRequest.show() and the promise resolves successfully, the PaymentResponse object available inside the fulfilled promise (instrumentResponse above) will have a PaymentResponse.details property that will contain response details. This has to conform to the structure defined by the BasicCardResponse dictionary, and may look something like this:

{
  "cardNumber' : '9999999999999999",
  "cardholderName' : 'Pat Straw",
  "cardSecurityCode" : "999",
  "expiryMonth" : "07",
  "expiryYear" : "2021",
  "billingAddress" : {
    "country" : "GB",
    // etc. billing address is a PaymentAddress object
  }
}

Specifications

Specification Status Comment
Payment Request APIThe definition of 'PaymentAddress' in that specification. Candidate Recommendation Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
PaymentAddress Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds. Requires dom.payments.request.enabled to be set to true and the comma-delineated list in dom.payments.request.supportedRegions to contain one or more of the supported 2-character ISO locales, currently US and CA.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds. Requires dom.payments.request.enabled to be set to true and the comma-delineated list in dom.payments.request.supportedRegions to contain one or more of the supported 2-character ISO locales, currently US and CA.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

addressLine Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

city Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

country Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

dependentLocality Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

languageCode

Deprecated'Non-standard'

Chrome

Full support 60

Edge

Full support 15

Firefox

No support 56 — 63

IE

No support No

Opera

Full support 47

Safari

?

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android

No support 56 — 63

Opera Android

Full support 44

Safari iOS

?

Samsung Internet Android

Full support Yes

organization Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

phone Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

postalCode Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

recipient Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

region Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

regionCode

Deprecated'Non-standard'

Chrome

No support No

Edge

No support No

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

No support No

Safari

No support No

WebView Android

No support No

Chrome Android

No support No

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

No support No

Safari iOS

No support No

Samsung Internet Android

No support No

sortingCode Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

toJSON() Chrome

Full support 60

Edge

Full support 15

Firefox No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

IE

No support No

Opera

Full support 47

Safari

Full support 11.1

WebView Android

No support No

Chrome Android

Full support 56

Firefox Android No support No

Notes'

No support No

Notes'

Notes' Available only in nightly builds.

Opera Android

Full support 44

Safari iOS

Full support 11.3

Samsung Internet Android

Full support Yes

Legend

Full support  
Full support
No support  
No support
Compatibility unknown  
Compatibility unknown
Non-standard. Expect poor cross-browser support.'
Non-standard. Expect poor cross-browser support.
Deprecated. Not for use in new websites.'
Deprecated. Not for use in new websites.
See implementation notes.'
See implementation notes.