Increase.PhysicalCards.PhysicalCard (Increase v1.0.0)

Copy Markdown View Source

Custom physical Visa cards that are shipped to your customers. The artwork is configurable by a connected [Card Profile]. The same Card can be used for multiple Physical Cards. Printing cards incurs a fee. Please contact support@increase.com for pricing!

Fields

  • id - The physical card identifier.
  • card_id - The identifier for the Card this Physical Card represents.
  • cardholder - Details about the cardholder, as it appears on the printed card.
  • created_at - The ISO 8601 date and time at which the Physical Card was created.
  • 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.
  • physical_card_profile_id - The Physical Card Profile used for this Physical Card.
  • shipment - The details used to ship this physical card.
  • status - The status of the Physical Card.
  • type - A constant representing the object's type. For this resource it will always be physical_card.

Summary

Types

t()

@type t() :: %Increase.PhysicalCards.PhysicalCard{
  card_id: String.t(),
  cardholder: Increase.PhysicalCards.PhysicalCard.Cardholder.t(),
  created_at: DateTime.t(),
  id: String.t(),
  idempotency_key: String.t() | nil,
  physical_card_profile_id: String.t() | nil,
  shipment: Increase.PhysicalCards.PhysicalCard.Shipment.t(),
  status: String.t(),
  type: String.t()
}