The Debit Card sub-object

Debit Card Object's attributes, fields, types
Contacts
The Debit Card sub-object
 last updated: 
November 30, 2023
Field Type Optional Description
cardNumber string card token
last4 string Last 4 of the card
expiryMonth string Expiration month of the card
cvv string CVV code (required for debit pull verification)
expiryYear string Expiration Year of the card
pull boolean if debit pull is enabled or disabled by the debit card issuer
push boolean if debit pull is enabled or disabled by the debit card issuer
address object see The Address sub-object

SAMPLE OBJECT

  1. {
  2.   "cardNumber": "tok_live_6GVyHuQR7aAjCZivYzLbuP_9990",
  3.   "last4": "9990",
  4.   "expiryMonth": "10",
  5.   "expiryYear": "2024",
  6.   "cvv": "123",
  7.   "address": {
  8.     "addressType": "card",
  9.     "line1": "113 James Way",
  10.     "line2": "",
  11.     "city": "Las Vegas",
  12.     "state": "NV",
  13.     "country": "US",
  14.     "postalCode": "89145"
  15.   },
  16.   "pull": {
  17.     "enabled": true
  18.   },
  19.   "push": {
  20.     "enabled": true
  21.   }
  22. }

For detailed steps read:

Send a Debit Push

Receive a Debit Pull

Examples are also available in the postman collection.