This contains artwork and metadata relating to a Physical Card's appearance. For more information, see our guide on physical card artwork.
See https://increase.com/documentation/api/physical-card-profiles for the full API reference for this resource.
Summary
Functions
Archive a Physical Card Profile
Clone a Physical Card Profile
Create a Physical Card Profile
List Physical Card Profiles
Retrieve a Card Profile
Functions
@spec archive(Increase.Client.t() | keyword() | nil, String.t(), keyword()) :: {:ok, Increase.PhysicalCardProfiles.PhysicalCardProfile.t()} | {:error, Increase.Error.t()}
Archive a Physical Card Profile
POST /physical_card_profiles/{physical_card_profile_id}/archive
@spec clone( Increase.Client.t() | keyword() | nil, String.t(), map() | keyword(), keyword() ) :: {:ok, Increase.PhysicalCardProfiles.PhysicalCardProfile.t()} | {:error, Increase.Error.t()}
Clone a Physical Card Profile
POST /physical_card_profiles/{physical_card_profile_id}/clone
@spec create(Increase.Client.t() | keyword() | nil, map() | keyword(), keyword()) :: {:ok, Increase.PhysicalCardProfiles.PhysicalCardProfile.t()} | {:error, Increase.Error.t()}
Create a Physical Card Profile
POST /physical_card_profiles
@spec list(Increase.Client.t() | keyword() | nil, map() | keyword(), keyword()) :: {:ok, Increase.Page.t()} | {:error, Increase.Error.t()}
List Physical Card Profiles
Returns a %Increase.Page{} whose data is a list of %__MODULE__. PhysicalCardProfile{} structs. Page through results with
Increase.Page.auto_paging_stream/1 or Increase.Page.auto_paging_each/2.
GET /physical_card_profiles
@spec retrieve(Increase.Client.t() | keyword() | nil, String.t(), keyword()) :: {:ok, Increase.PhysicalCardProfiles.PhysicalCardProfile.t()} | {:error, Increase.Error.t()}
Retrieve a Card Profile
GET /physical_card_profiles/{physical_card_profile_id}