action increase_list_cards { label: "List Cards" provider: increase method: GET path: "/cards" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Filter Cards to ones belonging to the specified Account." } "created_at.after": { type: "string" format: "date-time" description: "Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "created_at.before": { type: "string" format: "date-time" description: "Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "created_at.on_or_after": { type: "string" format: "date-time" description: "Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "created_at.on_or_before": { type: "string" format: "date-time" description: "Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } 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." } } additionalProperties: false } output: { type: "object" description: "A list of Card objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { type: "object" description: "Cards are commercial credit cards. They'll immediately work for online purchases after you create them. All cards maintain a credit limit of 100% of the Account’s available balance at the time of transaction. Funds are deducted from the Account upon transaction settlement." required: ["id", "account_id", "created_at", "description", "last4", "expiration_month", "expiration_year", "status", "billing_address", "digital_wallet", "type"] properties: { account_id: { type: "string" description: "The identifier for the account this card belongs to." } billing_address: { type: "object" description: "The Card's billing address." required: ["line1", "line2", "city", "state", "postal_code"] properties: { city: { type: "string" description: "The city of the billing address." } line1: { type: "string" description: "The first line of the billing address." } line2: { type: "string" description: "The second line of the billing address." } postal_code: { type: "string" description: "The postal code of the billing address." } state: { type: "string" description: "The US state of the billing address." } } } 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 was created." } description: { type: "string" description: "The card's description for display purposes." } digital_wallet: { type: "object" description: "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." required: ["email", "phone", "card_profile_id"] properties: { card_profile_id: { type: "string" description: "The card profile assigned to this digital card. Card profiles may also be assigned at the program level." } email: { type: "string" description: "An email address that can be used to verify the cardholder via one-time passcode over email." } phone: { type: "string" description: "A phone number that can be used to verify the cardholder via one-time passcode over SMS." } } } expiration_month: { type: "integer" description: "The month the card expires in M format (e.g., August is 8)." } expiration_year: { type: "integer" description: "The year the card expires in YYYY format (e.g., 2025)." } id: { type: "string" description: "The card identifier." } last4: { type: "string" description: "The last 4 digits of the Card's Primary Account Number." } status: { type: "string" description: "This indicates if payments can be made with the card." enum: ["active", "disabled", "canceled"] } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `card`." enum: ["card"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }