ChargeVerifyBuyerDetails

The verification details parameter passed, to the payments.verifyBuyer() function, for cases in which the buyer is being charged.

Properties

chargeVerifyBuyerDetails.js
JS
JavaScript

const verificationDetails = {

  amount: '1.00',

  currencyCode: 'GBP',

  intent: 'CHARGE',

  billingContact: {

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

    familyName: 'Doe',

    givenName: 'John',

    email: '[email protected]',

    countryCode: 'GB',

    phone: '3214563987',

    state: 'LND',

    city: 'London',

    postalCode: 'WC2N 5DU',

  },

};