action fire_create_new_card { label: "Create a new debit card." description: "You can create multiple debit cards which can be linked to your fire.com accounts." provider: fire method: POST path: "/v1/cards" encoding: json input: { type: "object" properties: { acceptFeesAndCharges: { type: "boolean" } addressType: { type: "string" enum: ["HOME", "BUSINESS"] } cardPin: { type: "string" } eurIcan: { type: "integer" format: "int64" } gbpIcan: { type: "integer" format: "int64" } userId: { type: "integer" format: "int64" } } } output: { type: "object" properties: { cardId: { type: "integer" format: "int64" } expiryDate: { type: "string" format: "date-time" } maskedPan: { type: "string" } status: { type: "string" enum: ["CREATED_ACTIVE", "CREATED_INACTIVE"] } } } }