Increase.Cards.CardDetails (Increase v1.0.0)

Copy Markdown View Source

An object containing the sensitive details (card number, CVC, PIN, etc) for a Card. These details are not included in the Card object. If you'd prefer to never access these details directly, you can use the [embedded iframe] to display the information to your users.

Fields

  • card_id - The identifier for the Card for which sensitive details have been returned.
  • expiration_month - The month the card expires in M format (e.g., August is 8).
  • expiration_year - The year the card expires in YYYY format (e.g., 2025).
  • pin - The 4-digit PIN for the card, for use with ATMs.
  • primary_account_number - The card number.
  • type - A constant representing the object's type. For this resource it will always be card_details.
  • verification_code - The three-digit verification code for the card. It's also known as the Card Verification Code (CVC), the Card Verification Value (CVV), or the Card Identification (CID).

Summary

Types

t()

@type t() :: %Increase.Cards.CardDetails{
  card_id: String.t(),
  expiration_month: integer(),
  expiration_year: integer(),
  pin: String.t(),
  primary_account_number: String.t(),
  type: String.t(),
  verification_code: String.t()
}