action bunq_list_all_generated_cvc2_for_user_card { description: "Get all generated CVC2 codes for a card." provider: bunq method: GET path: "/user/{userID}/card/{cardID}/generated-cvc2" encoding: json input: { type: "object" properties: { cardID: { type: "integer" } userID: { type: "integer" } } required: ["cardID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { created: { type: "string" description: "The timestamp of the cvc code's creation." } cvc2: { type: "string" description: "The cvc2 code." } expiry_time: { type: "string" description: "Expiry time of the cvc2." } id: { type: "integer" description: "The id of the cvc code." } status: { type: "string" description: "The status of the cvc2. Can be AVAILABLE, USED, EXPIRED, BLOCKED." } type: { type: "string" description: "The type of generated cvc2. Can be STATIC or GENERATED." } updated: { type: "string" description: "The timestamp of the cvc code's last update." } } } } }