PayNow

CardDetailsDto

Card payment method details

brandstringRequired
The card brand
countrystringRequired
The country code where the card was issued
exp_monthintegerRequired
The card expiration month
exp_yearintegerRequired
The card expiration year
fingerprintstringRequired
A unique fingerprint for this card
fundingstringRequired
The card funding type
last4stringRequired
The last 4 digits of the card number
binstringOptional
The Bank Identification Number (first 6/8 digits of card). Only available internally.
brand_productstringOptional
The card product code. Only available internally.
descriptionstringOptional
The card description. Only available internally.
issuerstringOptional
The card issuer/bank name. Only available internally.
walletCardWalletDtoOptional
Digital wallet details for a card
typestringRequired
The type of digital wallet
Example
{
  "brand": "visa",
  "country": "US",
  "exp_month": 12,
  "exp_year": 2028,
  "fingerprint": "abc123def456",
  "funding": "credit",
  "last4": "4242",
  "bin": 424242,
  "issuer": "Chase Bank",
  "description": "Visa Signature",
  "brand_product": "F",
  "wallet": {
    "type": "apple_pay"
  }
}