Increase.PhysicalCardProfiles.PhysicalCardProfile (Increase v1.0.0)

Copy Markdown View Source

This contains artwork and metadata relating to a Physical Card's appearance. For more information, see our guide on physical card artwork.

Fields

  • id - The Card Profile identifier.
  • back_image_file_id - The identifier of the File containing the physical card's back image. This will be missing until the image has been post-processed.
  • carrier_image_file_id - The identifier of the File containing the physical card's carrier image. This will be missing until the image has been post-processed.
  • contact_phone - A phone number the user can contact to receive support for their card.
  • created_at - The ISO 8601 date and time at which the Physical Card Profile was created.
  • creator - The creator of this Physical Card Profile.
  • description - A description you can use to identify the Physical Card Profile.
  • front_image_file_id - The identifier of the File containing the physical card's front image. This will be missing until the image has been post-processed.
  • front_text - Text printed on the front of the card. Reach out to support@increase.com for more information.
  • 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.
  • is_default - Whether this Physical Card Profile is the default for all cards in its Increase group.
  • program_id - The identifier for the Program this Physical Card Profile belongs to.
  • status - The status of the Physical Card Profile.
  • type - A constant representing the object's type. For this resource it will always be physical_card_profile.

Summary

Types

t()

@type t() :: %Increase.PhysicalCardProfiles.PhysicalCardProfile{
  back_image_file_id: String.t() | nil,
  carrier_image_file_id: String.t() | nil,
  contact_phone: String.t() | nil,
  created_at: DateTime.t(),
  creator: String.t(),
  description: String.t(),
  front_image_file_id: String.t() | nil,
  front_text:
    Increase.PhysicalCardProfiles.PhysicalCardProfile.FrontText.t() | nil,
  id: String.t(),
  idempotency_key: String.t() | nil,
  is_default: boolean(),
  program_id: String.t(),
  status: String.t(),
  type: String.t()
}