action increase_list_card_profiles { label: "List Card Profiles" provider: increase method: GET path: "/card_profiles" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "Return the page of entries after this one." } limit: { type: "integer" description: "Limit the size of the list that is returned. The default (and maximum) is 100 objects." } "status.in": { type: "array" description: "Return results whose value is in the provided list. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`." items: { type: "string" enum: ["pending", "rejected", "active", "archived"] } } } additionalProperties: false } output: { type: "object" description: "A list of Card Profile objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { type: "object" description: "This contains artwork and metadata relating to a Card's appearance in digital wallet apps like Apple Pay and Google Pay. For more information, see our guide on [digital card artwork](https://increase.com/documentation/card-art)" required: ["id", "created_at", "status", "description", "digital_wallets", "type"] properties: { created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Card Dispute was created." } description: { type: "string" description: "A description you can use to identify the Card Profile." } digital_wallets: { type: "object" description: "How Cards should appear in digital wallets such as Apple Pay. Different wallets will use these values to render card artwork appropriately for their app." required: ["text_color", "issuer_name", "card_description", "contact_website", "contact_email", "contact_phone", "background_image_file_id", "app_icon_file_id"] properties: { app_icon_file_id: { type: "string" description: "The identifier of the File containing the card's icon image." } background_image_file_id: { type: "string" description: "The identifier of the File containing the card's front image." } card_description: { type: "string" description: "A user-facing description for the card itself." } contact_email: { type: "string" description: "An email address the user can contact to receive support for their card." } contact_phone: { type: "string" description: "A phone number the user can contact to receive support for their card." } contact_website: { type: "string" description: "A website the user can visit to view and receive support for their card." } issuer_name: { type: "string" description: "A user-facing description for whoever is issuing the card." } text_color: { type: "object" description: "The Card's text color, specified as an RGB triple." required: ["red", "green", "blue"] properties: { blue: { type: "integer" description: "The value of the blue channel in the RGB color." } green: { type: "integer" description: "The value of the green channel in the RGB color." } red: { type: "integer" description: "The value of the red channel in the RGB color." } } } } } id: { type: "string" description: "The Card Profile identifier." } status: { type: "string" description: "The status of the Card Profile." enum: ["pending", "rejected", "active", "archived"] } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `card_profile`." enum: ["card_profile"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }