Conekta::TokenRequestCard

July 21, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
cvcStringIt is a value that allows identifying the security code of the card.
device_fingerprintStringIt is a value that allows identifying the device fingerprint.[optional]
exp_monthStringIt is a value that allows identifying the expiration month of the card.
exp_yearStringIt is a value that allows identifying the expiration year of the card.
nameStringIt is a value that allows identifying the name of the cardholder.
numberStringIt is a value that allows identifying the number of the card.

Example

require 'conekta'

instance = Conekta::TokenRequestCard.new(
  cvc: 123,
  device_fingerprint: zptcxk4p6w1ijwz85snf1l3bqe5g09ie,
  exp_month: 12,
  exp_year: 26,
  name: Miguel,
  number: 4242424242424242
)