action fire_get_listof_cards { label: "View List of Cards." description: "Returns a list of cards related to your fire.com account." provider: fire method: GET path: "/v1/cards" encoding: json output: { type: "object" properties: { cards: { type: "array" items: { type: "object" properties: { blocked: { type: "boolean" description: "Whether the card is blocked or not" } cardId: { type: "integer" format: "int64" description: "card id assigned by fire.com" } dateCreated: { type: "string" format: "date-time" description: "The date-time the card was created" } emailAddress: { type: "string" description: "card user email address" } eurIcan: { type: "integer" format: "int64" description: "identifier for the eur fire.com account (assigned by fire.com)" } expiryDate: { type: "string" format: "date-time" description: "card expiry date" } firstName: { type: "string" description: "card user first name" } gbpIcan: { type: "integer" format: "int64" description: "identifier for the gbp fire.com account (assigned by fire.com)" } lastName: { type: "string" description: "card user last name" } maskedPan: { type: "string" description: "card number (masked)" } provider: { type: "string" description: "card provider" enum: ["MASTERCARD"] } status: { type: "string" description: "card status" enum: ["LIVE", "CREATED_ACTIVE", "CREATED_INACTIVE", "DEACTIVATED"] } statusReason: { type: "string" description: "reason for card status" enum: ["LOST_CARD", "STOLEN_CARD", "CARD_DESTROYED"] } userId: { type: "integer" format: "int64" description: "card user id assigned by fire.com" } } } } } } }