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