[ Web Proxy ]
URL:
Viewing: https://developer.squareup.com/reference/sdks/web/payments/objects/StoreCardVerificationDetails [Back]  [Original]

StoreCardVerificationDetails Object - Square Web Payments SDK Reference

#
StoreCardVerificationDetails

The verification details parameter, passed to the card.tokenize() function, for cases in which the card is being stored on file.

Properties

#
billingContact BillingContact

Contact information for the buyer.

#
customerInitiated boolean

Indicates whether the customer initiated the payment.

#
intent "STORE"

Transactional intent of the payment.

#
sellerKeyedIn boolean

Indicates that the seller keyed in payment details on behalf of the customer. This is used to flag a payment as Mail Order / Telephone Order (MOTO).

storeCardVerificationDetails.js
JS
JavaScript
Copy

const verificationDetails = {

  intent: 'STORE',

  billingContact: {

    givenName: 'John',

    familyName: 'Doe',

    email: '[email protected]',

    phone: '3214563987',

    addressLines: ['123 Main Street', 'Apartment 1'],

    city: 'London',

    state: 'LND',

    countryCode: 'GB',

    postalCode: 'WC2N 5DU',

  },

  customerInitiated: true,

  sellerKeyedIn: false,

};

Web Proxy Viewer  |  New URL  |  Original Page