| [ Web Proxy ] |
| Viewing: https://developer.squareup.com/reference/sdks/web/payments/objects/StoreCardVerificationDetails | [Back] [Original] |
Objects
The verification details parameter, passed to the card.tokenize() function, for cases in which the card is being stored on file.
Contact information for the buyer.
Indicates whether the customer initiated the payment.
Transactional intent of the payment.
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).
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 |