Increase.Cards.Card (Increase v1.0.0)

Copy Markdown View Source

Cards may operate on credit, debit, or prepaid BINs. They’ll immediately work for online purchases after you create them. All cards work on a good funds model, and maintain a maximum limit of 100% of the Account’s available balance at the time of transaction. Funds are deducted from the Account upon transaction settlement.

Fields

  • id - The card identifier.
  • account_id - The identifier for the account this card belongs to.
  • authorization_controls - Controls that restrict how this card can be used.
  • billing_address - The Card's billing address.
  • bin - The Bank Identification Number (BIN) of the Card.
  • created_at - The ISO 8601 date and time at which the Card was created.
  • description - The card's description for display purposes.
  • digital_wallet - The contact information used in the two-factor steps for digital wallet card creation. At least one field must be present to complete the digital wallet steps.
  • entity_id - The identifier for the entity associated with this card.
  • 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).
  • idempotency_key - The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
  • last4 - The last 4 digits of the Card's Primary Account Number.
  • status - This indicates if payments can be made with the card.
  • type - A constant representing the object's type. For this resource it will always be card.

Summary

Types

t()

@type t() :: %Increase.Cards.Card{
  account_id: String.t(),
  authorization_controls: Increase.Cards.Card.AuthorizationControls.t() | nil,
  billing_address: Increase.Cards.Card.BillingAddress.t(),
  bin: String.t(),
  created_at: DateTime.t(),
  description: String.t() | nil,
  digital_wallet: Increase.Cards.Card.DigitalWallet.t() | nil,
  entity_id: String.t() | nil,
  expiration_month: integer(),
  expiration_year: integer(),
  id: String.t(),
  idempotency_key: String.t() | nil,
  last4: String.t(),
  status: String.t(),
  type: String.t()
}