action fire_block_card { label: "Block a card" description: "Updates status of an existing card to block which prevents any transactions being carried out with that card." provider: fire method: POST path: "/v1/cards/{cardId}/block" encoding: json input: { type: "object" properties: { cardId: { type: "integer" format: "int64" description: "The cardid of the card to block" } } required: ["cardId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }